blowfish/src/renderer/src/components/Box.module.css

13 lines
183 B
CSS

.box {
width: 100%;
padding: 5%;
background: #fff;
border-radius: 5px;
border: 0.1rem solid #e2e2e2;
}
:global(.dark) .box {
background: #222;
border-color: #303030;
}