fe77ede49e
* introduce CI checks * fixx * add caching * fixes * wip * server bridge linting * No lint errors * fix paths on lint:prettier * make files pretty again * fix stylelint * fix lock --------- Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com>
32 lines
507 B
CSS
32 lines
507 B
CSS
/* stylelint-disable selector-id-pattern */
|
|
@import url('@speckle/ui-components/style.css');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/**
|
|
* Don't pollute this - it's going to be bundled in all pages!
|
|
*/
|
|
|
|
/**
|
|
* Making sure page is always stretched to the bottom of the screen even if there's nothing in it
|
|
*/
|
|
html,
|
|
body,
|
|
div#__nuxt,
|
|
div#__nuxt > div {
|
|
min-height: 100%;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
div#__nuxt {
|
|
height: 100%;
|
|
}
|
|
|
|
.tippy-content {
|
|
@apply text-body-3xs;
|
|
@apply !px-2 !py-1;
|
|
}
|