You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
552 B
SCSS
39 lines
552 B
SCSS
.notice {
|
|
display: flex;
|
|
// float: right;
|
|
// padding-top: 10px;
|
|
// margin-right: 28px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.topNotice {
|
|
padding: 4px 8px 0px 8px;
|
|
user-select: none;
|
|
}
|
|
|
|
.bottomBar {
|
|
text-align: center;
|
|
border-top: 1px solid #f0f0f0;
|
|
border-radius: 0 0 2px 2px;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.dobtn {
|
|
display: inline-block;
|
|
width: 50%;
|
|
padding: 12px 0;
|
|
cursor: pointer;
|
|
&:hover {
|
|
background-color: #eee;
|
|
}
|
|
}
|
|
|
|
.doLeftBtn {
|
|
@extend .dobtn;
|
|
border-right: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.tab {
|
|
padding: 0 12px;
|
|
}
|