2022-08-04 12:56:30 +02:00
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
gap: 10px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
2022-08-04 23:30:09 +02:00
|
|
|
padding: 5px 0;
|
2022-08-04 12:56:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.item h1 {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item h2 {
|
|
|
|
font-size: 14px;
|
2022-12-13 04:45:38 +01:00
|
|
|
color: var(--base700);
|
2022-08-04 12:56:30 +02:00
|
|
|
}
|
|
|
|
|
2022-08-04 23:30:09 +02:00
|
|
|
.text {
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 5px;
|
2022-12-13 04:45:38 +01:00
|
|
|
border: 1px solid var(--base400);
|
|
|
|
background: var(--base50);
|
2022-08-04 23:30:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.active .text {
|
2022-12-13 04:45:38 +01:00
|
|
|
border-color: var(--base600);
|
|
|
|
box-shadow: 4px 4px 4px var(--base100);
|
2022-08-04 23:30:09 +02:00
|
|
|
}
|
|
|
|
|
2022-08-04 12:56:30 +02:00
|
|
|
.dragActive {
|
|
|
|
cursor: grab;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dragActive:active {
|
|
|
|
cursor: grabbing;
|
|
|
|
}
|