mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 18:57:31 +03:00
29 lines
491 B
SCSS
29 lines
491 B
SCSS
// Breakpoints
|
|
$xsMax: 575px;
|
|
$smMin: 576px;
|
|
$smMax: 767px;
|
|
$mdMin: 768px;
|
|
$mdMax: 991px;
|
|
$lgMin: 992px;
|
|
$lgMax: 1199px;
|
|
$xlgMin: 1200px;
|
|
$responsiveTableBreakpoint: $mdMax;
|
|
|
|
// Colors
|
|
$mainColor: #4696e5;
|
|
$lightColor: #f5f6fe;
|
|
$lightGrey: #eeeeee;
|
|
$dangerColor: #dc3545;
|
|
$mediumGrey: #dee2e6;
|
|
$textPlaceholder: #6c757d;
|
|
|
|
// Misc
|
|
$headerHeight: 56px;
|
|
$asideMenuWidth: 260px;
|
|
$footer-height: 2.3rem;
|
|
$footer-margin: .8rem;
|
|
|
|
// Bootstrap overwrites
|
|
$theme-colors: (
|
|
'primary': $mainColor
|
|
);
|