mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
36 lines
412 B
SCSS
36 lines
412 B
SCSS
@import 'constants/colors';
|
|
@import 'constants/dimensions';
|
|
|
|
html, body, #root {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: $font-size;
|
|
}
|
|
|
|
h1 {
|
|
font-size: $font-size-xxl;
|
|
}
|
|
|
|
h2 {
|
|
font-size: $font-size-xl;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
strong {
|
|
font-weight: 600;
|
|
}
|