mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
41 lines
520 B
CSS
41 lines
520 B
CSS
.buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.item {
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.item h1 {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.item h2 {
|
|
font-size: 14px;
|
|
color: var(--gray700);
|
|
}
|
|
|
|
.text {
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
border: 1px solid var(--gray400);
|
|
background: var(--gray50);
|
|
}
|
|
|
|
.active .text {
|
|
border-color: var(--gray600);
|
|
box-shadow: 4px 4px 4px var(--gray100);
|
|
}
|
|
|
|
.dragActive {
|
|
cursor: grab;
|
|
}
|
|
|
|
.dragActive:active {
|
|
cursor: grabbing;
|
|
}
|