mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-06 23:39:27 -05:00
16 lines
420 B
QML
16 lines
420 B
QML
import "root:/"
|
|
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
RippleButton {
|
|
Layout.fillHeight: true
|
|
implicitWidth: implicitHeight - topInset - bottomInset
|
|
buttonRadius: Appearance.rounding.normal
|
|
|
|
topInset: dockVisualBackground.margin + dockRow.padding
|
|
bottomInset: dockVisualBackground.margin + dockRow.padding
|
|
}
|