UNPKG

649 BCSSView Raw
1.adm-cascader {
2 width: 100%;
3 overflow: hidden;
4 position: relative;
5 display: flex;
6 flex-direction: column;
7}
8.adm-cascader-header {
9 flex: none;
10 display: flex;
11 justify-content: space-between;
12 align-items: center;
13 padding: 6px 8px;
14}
15.adm-cascader-header-button {
16 font-size: var(--adm-font-size-7);
17 display: inline-block;
18 padding: 4px 4px;
19}
20.adm-cascader-header-title {
21 padding: 4px 4px;
22 font-size: var(--adm-font-size-7);
23 color: var(--adm-color-text);
24 text-align: center;
25 flex: 1;
26}
27.adm-cascader-body {
28 flex: auto;
29 height: 100%;
30 width: 100%;
31}
32.adm-cascader-body > .adm-cascader-view {
33 --height: 310px;
34}