mirror of
https://github.com/wassname/talk.git
synced 2026-08-17 11:27:52 +08:00
24 lines
291 B
CSS
24 lines
291 B
CSS
.Dashboard {
|
|
display: flex;
|
|
padding: 5px;
|
|
}
|
|
|
|
.widget {
|
|
margin-top: 10px;
|
|
flex: 1;
|
|
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
|
|
margin-right: 10px;
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
.widget:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.heading {
|
|
margin: 0;
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|