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
| .feature {
| &-main {
| width: 100%;
| height: 96vh;
| overflow: scroll;
| }
| &-main::-webkit-scrollbar {
| display: none;
| }
| &-public-row {
| display: flex;
| padding: 6px;
| justify-content: space-between;
| }
| &-public-title {
| font-size: 16px;
| font-weight: 600;
| }
| &-tab {
| width: 100%;
| & .feature-tab-style {
| background-color: #fff;
| padding-left: 24px;
| }
| &-style .ant-tabs-nav {
| border-bottom: auto;
| margin: 0;
| }
| }
| }
|
|