jannaahs 08bc806325 upgraded all node dependencies
- upgraded all packages to the latest version
- fixed webpack config
- fixed css
2021-09-21 13:19:20 +02:00

43 lines
799 B
SCSS

@import "tailwindcss/base";
@import "tailwindcss/utilities";
@import "tailwindcss/components";
.accentuated-t {
border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.accentuated-r {
border-right: 2px solid rgba(0, 0, 0, 0.2);
}
.accentuated-b {
border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}
.accentuated-l {
border-left: 2px solid rgba(0, 0, 0, 0.1);
}
.accentuated {
@apply accentuated-t accentuated-r accentuated-b accentuated-l
}
.accentuated-x {
@apply accentuated-r accentuated-l
}
.accentuated-y {
@apply accentuated-t accentuated-b
}
.hover\:glow-orange:hover {
box-shadow: 0 0 3px 1px rgba(227, 152, 39, 0.8);
}
.hover\:glow-green:hover {
box-shadow: 0 0 3px 1px rgba(94, 182, 99, 0.8);
}
.hover\:glow-red:hover {
box-shadow: 0 0 3px 1px rgba(254, 90, 90, 0.8);
}