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

13 lines
183 B
CSS
Raw Normal View History

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