editor: added borders to groups (#5612)

This commit is contained in:
Florian Blasius 2024-07-12 13:24:35 +00:00 committed by GitHub
parent 806d12bcb3
commit 96f2f15552
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View file

@ -42,4 +42,9 @@ export component Group {
content-layer := VerticalLayout {
@children
}
Rectangle {
border-width: 1px;
border-color: Palette.border;
}
}

View file

@ -42,6 +42,8 @@ export component PropertyView {
}
content-layer := VerticalLayout {
padding: background-layer.border-width;
GroupHeader {
title: @tr("Properties");
}
@ -237,4 +239,9 @@ export component PropertyView {
}
}
}
Rectangle {
border-width: 1px;
border-color: Palette.border;
}
}