mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 02:37:22 +03:00
21 lines
512 B
SCSS
21 lines
512 B
SCSS
@import '@shlinkio/shlink-frontend-kit/base'; // Before bootstrap stylesheet. Includes SASS var overrides
|
|
@import 'node_modules/bootstrap/scss/bootstrap.scss';
|
|
@import '@shlinkio/shlink-frontend-kit/index'; // After bootstrap. Includes CSS overwrites
|
|
@import '@shlinkio/shlink-web-component/index';
|
|
|
|
* {
|
|
outline: none !important;
|
|
}
|
|
|
|
:root {
|
|
scroll-behavior: auto;
|
|
color-scheme: var(--color-scheme);
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
background: var(--secondary-color);
|
|
color: var(--text-color);
|
|
}
|