18 lines
259 B
SCSS
18 lines
259 B
SCSS
|
.card {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
background-color: $card-background;
|
||
|
.profile {
|
||
|
|
||
|
}
|
||
|
.call {
|
||
|
transform: scaleX(-1);
|
||
|
-moz-transform: scaleX(-1);
|
||
|
-webkit-transform: scaleX(-1);
|
||
|
-ms-transform: scaleX(-1);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|