mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
70 lines
796 B
SCSS
70 lines
796 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
html {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: $font-size;
|
|
}
|
|
|
|
html, body, #root {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: $font-size-xxl;
|
|
}
|
|
|
|
h2 {
|
|
font-size: $font-size-xl;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.tall {
|
|
height: 100%;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.wide {
|
|
width: 100%;
|
|
}
|
|
|
|
.hide-scrollbars {
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.stock-height {
|
|
height: $line-height-md;
|
|
}
|
|
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
@media (max-width: $breakpoint-md) {
|
|
body {
|
|
font-size: $font-size * 0.95;
|
|
}
|
|
}
|
|
|
|
@media (max-width: $breakpoint-sm) {
|
|
body {
|
|
font-size: $font-size * 0.9;
|
|
}
|
|
}
|