umami/components/metrics/WebsiteHeader.module.css

33 lines
446 B
CSS
Raw Normal View History

2020-08-18 09:51:32 +02:00
.title {
color: var(--gray900);
2020-08-18 09:51:32 +02:00
font-size: var(--font-size-large);
2022-03-02 04:41:37 +01:00
line-height: var(--font-size-xlarge);
align-items: center;
display: flex;
max-width: 100%;
overflow: hidden;
}
.titleLink {
max-width: 100%;
2020-08-18 09:51:32 +02:00
}
2020-09-16 04:16:05 +02:00
.link {
font-weight: 600;
2020-08-18 09:51:32 +02:00
}
2022-03-02 04:28:44 +01:00
.active {
2022-03-02 04:41:37 +01:00
display: flex;
2022-03-02 04:28:44 +01:00
justify-content: center;
}
@media only screen and (max-width: 992px) {
2020-08-18 09:51:32 +02:00
.active {
2022-03-02 04:28:44 +01:00
justify-content: flex-start;
2020-08-18 09:51:32 +02:00
}
2022-03-12 01:04:05 +01:00
a.link {
display: none;
}
2020-08-18 09:51:32 +02:00
}