f2d7493c2a
* stuff copied over, but aint workin * various fixes * vscode settings * trigger deploy * trigger deploy
31 lines
501 B
CSS
31 lines
501 B
CSS
/* stylelint-disable selector-id-pattern */
|
|
@import '@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;
|
|
}
|