-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_table.scss
53 lines (43 loc) · 826 Bytes
/
_table.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.table {
--table-border: 2px solid #d0d0d0;
display: flex;
flex-direction: column;
border-collapse: collapse;
margin: 0;
font-size: 20px;
line-height: 36px;
}
.table__row {
border-bottom: var(--table-border);
padding: 12px 0;
}
.table__term {
display: inline-block;
&::after { content: ':'; }
}
.table__description {
display: inline-block;
font-weight: bold;
margin: 0
}
@include breakpoint {
.table {
display: table;
width: 100%;
}
.table__row {
display: table-row;
padding: 0;
/* Убираем лишнюю границу */
&:last-child { border-bottom: none }
}
.table__term {
display: table-cell;
border-right: var(--table-border);
padding: 12px 12px 12px 0;
}
.table__description {
display: table-cell;
padding: 12px;
}
}