19 lines
230 B
SCSS
19 lines
230 B
SCSS
.cell {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
align-self: center;
|
|
|
|
&.right {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&.space {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
> mat-icon {
|
|
margin-right: 0.5rem;
|
|
}
|
|
}
|