2023-05-25 04:40:02 +00:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-10 03:22:28 +00:00
|
|
|
.title {
|
2022-02-20 01:32:54 +00:00
|
|
|
display: flex;
|
2022-12-13 03:45:38 +00:00
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
2023-02-02 02:39:54 +00:00
|
|
|
font-size: 24px;
|
|
|
|
|
font-weight: 700;
|
2022-02-20 01:32:54 +00:00
|
|
|
overflow: hidden;
|
2023-04-10 03:22:28 +00:00
|
|
|
height: 100px;
|
2022-02-20 01:32:54 +00:00
|
|
|
}
|
|
|
|
|
|
2023-07-08 19:07:37 +00:00
|
|
|
.actions {
|
2022-03-02 03:41:37 +00:00
|
|
|
display: flex;
|
2022-12-13 03:45:38 +00:00
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2023-02-02 02:39:54 +00:00
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 30px;
|
2023-04-10 03:22:28 +00:00
|
|
|
min-height: 0;
|
2022-03-02 03:28:44 +00:00
|
|
|
}
|
2023-07-10 11:35:19 +00:00
|
|
|
|
|
|
|
|
.selected {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2023-07-27 22:08:33 +00:00
|
|
|
|
|
|
|
|
.links {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
|
.links {
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
flex: 1;
|
|
|
|
|
border-bottom: 1px solid var(--base300);
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon,
|
|
|
|
|
.icon svg {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
}
|