17 lines
255 B
SCSS
17 lines
255 B
SCSS
table.dashboard{
|
|
border-spacing: 0px;
|
|
|
|
> tbody > tr,
|
|
> tbody > tr > td{
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
> tbody > tr > td{
|
|
margin: 15px 0;
|
|
}
|
|
}
|