pianello-api/resources/css/components/_box.css
Ale Gallo 74c4b1d3f4 Committing laraver (part 2)
committing part of the laravel system with templating files and components
2023-11-10 15:58:25 +01:00

16 lines
332 B
CSS

@layer components {
.box {
box-shadow: 0px 3px 20px #0000000b;
background-color: white;
border-color: transparent;
border-radius: theme("borderRadius.md");
position: relative;
}
.dark {
.box {
background-color: theme("backgroundColor.darkmode.600");
border-color: transparent;
}
}
}