cordis/client/webapp/styles/general.scss
2021-10-31 14:02:26 -05:00

30 lines
511 B
SCSS

@import "theme.scss";
/* disable draggable "ghost" image elements */
img {
-webkit-user-drag: none;
user-drag: none;
}
/* get rid of extra 2 pixels that magically gets added normally */
svg {
display: block;
}
* {
text-rendering: optimizeLegibility;
}
body {
margin: 0;
font-family: Whitney, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
user-select: none;
overflow: hidden; /**/
display: flex;
flex-direction: column;
}
:root {
background-color: $background-tertiary;
}