15 lines
273 B
QML
15 lines
273 B
QML
import qs.config
|
|
import QtQuick
|
|
import Quickshell.Widgets
|
|
|
|
WrapperRectangle {
|
|
id: root
|
|
margin: 8
|
|
radius: 8
|
|
color: Theme.palette.base200
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Styling.animations.speed.normal
|
|
}
|
|
}
|
|
}
|