snort/packages/app/src/Pages/Layout.css

71 lines
971 B
CSS
Raw Normal View History

2023-01-19 23:19:09 +00:00
.logo {
cursor: pointer;
2023-04-13 18:43:43 +00:00
}
.logo h1 {
2023-01-26 06:13:09 +00:00
font-weight: 700;
2023-01-25 18:08:53 +00:00
font-size: 29px;
2023-01-26 06:13:09 +00:00
line-height: 23px;
2023-04-13 18:43:43 +00:00
padding: 0;
margin: 0;
2023-01-19 23:19:09 +00:00
}
2023-01-25 18:08:53 +00:00
header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
2023-01-26 06:13:25 +00:00
}
2023-04-14 12:08:42 +00:00
.header-actions .avatar {
width: 48px;
height: 48px;
cursor: pointer;
2023-01-25 18:08:53 +00:00
}
.header-actions {
display: flex;
flex-direction: row;
2023-02-06 21:42:47 +00:00
align-items: center;
2023-01-25 18:08:53 +00:00
}
.header-actions .btn-rnd {
2023-01-11 14:31:58 +00:00
position: relative;
2023-02-06 21:42:47 +00:00
margin-right: 8px;
}
@media (min-width: 520px) {
2023-02-10 11:12:11 +00:00
.header-actions .btn-rnd:last-of-type {
2023-02-06 21:42:47 +00:00
margin-right: 16px;
}
2023-01-25 18:08:53 +00:00
}
.header-actions .btn-rnd .has-unread {
background: var(--highlight);
border-radius: 100%;
width: 9px;
height: 9px;
position: absolute;
2023-02-13 23:34:17 +00:00
top: 8px;
right: 8px;
2023-01-19 23:19:09 +00:00
}
2023-02-14 00:14:38 +00:00
@media (max-width: 520px) {
.header-actions .btn-rnd .has-unread {
2023-02-14 10:50:29 +00:00
top: 2px;
right: 2px;
2023-02-14 00:14:38 +00:00
}
}
2023-01-24 12:33:18 +00:00
.search {
margin: 0 10px 0 10px;
}
.search input {
margin: 0 5px 0 5px;
}
.search .btn {
display: none;
}