28 lines
432 B
SCSS
28 lines
432 B
SCSS
.cell {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 28px;
|
|
padding: 12px 0;
|
|
|
|
.title {
|
|
min-width: 140px;
|
|
flex: none;
|
|
color: #a9a9a9;
|
|
}
|
|
|
|
.desc {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex: 1 1 auto;
|
|
color: $color_font_one;
|
|
}
|
|
}
|
|
|
|
.descText {
|
|
@include common_ellipsis(2);
|
|
}
|