37 lines
520 B
SCSS
37 lines
520 B
SCSS
.woo-dash__card {
|
|
margin-bottom: 20px;
|
|
background: white;
|
|
border: 1px solid rgba( black, 0.2 );
|
|
}
|
|
|
|
.woo-dash__card-header {
|
|
padding: 20px;
|
|
border-bottom: 1px solid rgba( black, 0.2 );
|
|
display: grid;
|
|
|
|
.has-action & {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.has-menu & {
|
|
grid-template-columns: 1fr 50px;
|
|
}
|
|
|
|
.has-menu.has-action & {
|
|
grid-template-columns: 1fr 1fr 50px;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.woo-dash__card-action,
|
|
.woo-dash__card-menu {
|
|
text-align: right;
|
|
}
|
|
|
|
.woo-dash__card-body {
|
|
padding: 20px;
|
|
}
|