mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
16 lines
373 B
QML
16 lines
373 B
QML
|
import QtQuick 2.9
|
||
|
|
||
|
import "." as MoneroComponents
|
||
|
import "effects/" as MoneroEffects
|
||
|
|
||
|
Rectangle {
|
||
|
color: MoneroComponents.Style.appWindowBorderColor
|
||
|
height: 1
|
||
|
|
||
|
MoneroEffects.ColorTransition {
|
||
|
targetObj: parent
|
||
|
blackColor: MoneroComponents.Style._b_appWindowBorderColor
|
||
|
whiteColor: MoneroComponents.Style._w_appWindowBorderColor
|
||
|
}
|
||
|
}
|