1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .plate{
- display: flex;
- flex: 1;
- overflow: hidden;
- > div {
- width: 100%;
- height: 100%;
- }
- ul {
- width: 100%;
- &.lock {
- li {
- pointer-events: none;
- opacity: 0.5;
- }
- li.position {
- pointer-events: auto;
- opacity: 1;
- }
- }
- }
- li {
- padding: 15px 10px;
- > div {
- margin-bottom: 15px;
- &:last-child {
- margin-bottom: 0;
- }
- &.title {
- margin-bottom: 10px;
- }
- label {
- color: #ababab;
- font-size: 12px;
- }
- }
- &:last-child {
- border: none;
- &::after {
- display: none;
- }
- }
- .link-button {
- display: flex;
- justify-content: space-between;
- button {
- width: 45%;
- }
- }
- .switch-con{
- display: flex;
- align-items: center;
- justify-content: space-between;
- >span{
- font-size: 12px;
- }
- }
- }
- }
|