implement defaultwidgets

This commit is contained in:
sawka
2024-08-19 17:21:44 -07:00
parent ca3f418dc5
commit a639fc3c8d
4 changed files with 103 additions and 102 deletions
+16
View File
@@ -21,6 +21,7 @@
width: 50px;
overflow: hidden;
padding-top: 4px;
padding-bottom: 4px;
.widget {
display: flex;
@@ -46,7 +47,22 @@
.widget-label {
font-size: 10px;
margin-top: 3px;
width: 100%;
padding: 0 2px;
text-align: center;
white-space: nowrap;
overflow: hidden;
}
}
.widget-divider {
margin-left: 6px;
height: 2px;
background-color: var(--border-color);
}
.widget-spacer {
flex-grow: 1;
}
}
}