insomnia/app/css/constants/dimensions.scss
Gregory Schier e9d64ebb23 Workspaces (#7)
* Got a hacky workspace implementation running

* Removed some hax with reducer composition

* Moved some more around

* Moved files back out

* Started on entities reducer

* Split up some components

* Moved nested modules back out of workspaces

* Started on new Sidebar tree stuff

* Better store stuff

* Some more tweaks

* Removed workspace update action

* Re-implemented filtering in the Sidbare

* Switch to get the newest response
2016-04-26 00:29:24 -07:00

63 lines
970 B
SCSS

/* Padding */
$padding-md: 1.25rem;
$padding-sm: $padding-md * 0.5;
$padding-xs: $padding-md * 0.35;
$padding-xxs: $padding-md * 0.20;
$padding-lg: $padding-md * 2;
$padding-xl: $padding-md * 4;
/* Fonts */
$font-size: 12px;
$font-size-xs: 0.8rem;
$font-size-sm: 0.9rem;
$font-size-md: 1.0rem;
$font-size-lg: 1.1rem;
$font-size-xl: 1.3rem;
$font-size-xxl: 1.6rem;
/* Wrapper */
$line-height-md: 4rem;
$line-height-sm: $line-height-md * 0.75;
$line-height-xs: $line-height-md * 0.6;
/* Sidebar */
$sidebar-width: 20rem;
/* Borders */
$radius-sm: 0.1rem;
$radius-md: 0.2rem;
/* Dropdowns */
$dropdown-min-width: 15rem;
/* Modals */
$modal-width: 50rem;
/* Breakpoints */
$breakpoint-md: 790px;
$breakpoint-sm: 580px;
.txt-xs {
font-size: $font-size-xs;
}
.txt-sm {
font-size: $font-size-sm;
}
.txt-md {
font-size: $font-size-md;
}
.txt-lg {
font-size: $font-size-lg;
}
.txt-xl {
font-size: $font-size-xl;
}
.txt-xxl {
font-size: $font-size-xxl;
}