1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00
Files
help/_scss/_all.scss
2021-02-17 07:25:53 -08:00

40 lines
633 B
SCSS

html {
position: relative;
min-height: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:target::before {
content: '';
display: block;
height: $navbar-height + 5px;
margin-top: -$navbar-height + 5px;
}
a {
color: $link-color;
&:hover {
color: $link-hover-color;
}
}
a[rel='lightbox'] {
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in;
}
figcaption {
font-size: 0.9rem;
color: gray;
}
pre {
background: $gray-100;
border: 1px solid $border-color;
border-radius: $border-radius;
padding: 0.5rem;
}