umami/components/pages/websites/WebsiteHeader.module.css

56 lines
790 B
CSS
Raw Normal View History

.header {
display: flex;
flex-direction: row;
align-items: center;
}
2023-04-10 05:22:28 +02:00
.title {
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
2023-02-02 03:39:54 +01:00
font-size: 24px;
font-weight: 700;
overflow: hidden;
2023-04-10 05:22:28 +02:00
height: 100px;
}
2023-07-08 21:07:37 +02:00
.actions {
2022-03-02 04:41:37 +01:00
display: flex;
flex-direction: row;
align-items: center;
2023-02-02 03:39:54 +01:00
justify-content: flex-end;
gap: 30px;
2023-04-10 05:22:28 +02:00
min-height: 0;
2022-03-02 04:28:44 +01:00
}
.selected {
font-weight: bold;
}
.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;
}
}