pianello-api/resources/css/components/_box.css

17 lines
332 B
CSS
Raw Normal View History

@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;
}
}
}