mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 16:47:25 +00:00
10 lines
261 B
QML
10 lines
261 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../imports"
|
|
|
|
Rectangle {
|
|
implicitWidth: 1.2
|
|
color: SplitHandle.pressed ? Style.current.darkGrey
|
|
: (SplitHandle.hovered ? Qt.darker(Style.current.grey, 1.1) : Style.current.grey)
|
|
}
|