snort/packages/app/src/Pages/Layout.css
2023-10-18 15:44:03 +03:00

81 lines
1.2 KiB
CSS

.logo {
cursor: pointer;
text-wrap: nowrap;
}
.logo h1 {
font-weight: 700;
font-size: 29px;
line-height: 23px;
padding: 0;
margin: 0;
}
.logo:hover {
text-decoration: none;
}
header {
display: flex;
padding: var(--header-padding-tb) 16px;
justify-content: space-between;
align-items: center;
align-self: stretch;
gap: 24px;
}
.header-actions .avatar {
width: 40px;
height: 40px;
cursor: pointer;
}
.header-actions {
display: flex;
flex-direction: row;
align-items: center;
gap: 24px;
width: 100%;
}
.header-actions .btn {
border-radius: 0;
padding: 5px;
}
.header-actions .btn .has-unread {
background: var(--highlight);
border-radius: 100%;
width: 9px;
height: 9px;
position: absolute;
top: 8px;
right: 8px;
}
@media (max-width: 520px) {
.header-actions .btn .has-unread {
top: 2px;
right: 2px;
}
}
.stalker {
position: fixed;
top: 0;
width: 100vw;
height: 100vh;
box-shadow: 0px 0px 26px 0px rgba(139, 92, 246, 0.7) inset;
pointer-events: none;
}
.stalker button {
position: absolute;
top: 50px;
right: 50px;
color: black;
background-color: var(--btn-color);
padding: 12px;
pointer-events: all !important;
}