mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-22 12:29:37 +00:00
10 lines
237 B
QML
10 lines
237 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../imports"
|
|
|
|
Rectangle {
|
|
implicitWidth: 1.2
|
|
color: SplitHandle.pressed ? Theme.darkGrey
|
|
: (SplitHandle.hovered ? Qt.darker(Theme.grey, 1.1) : Theme.grey)
|
|
}
|