mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 20:08:37 +08:00
51 lines
683 B
CSS
51 lines
683 B
CSS
.card {
|
|
margin-bottom: 20px;
|
|
align-items: flex-start;
|
|
min-height: 100px;
|
|
max-width: 600px;
|
|
overflow: visible;
|
|
}
|
|
|
|
.header {
|
|
margin-top: 3px;
|
|
margin-bottom: 7px;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.action {
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
.content {
|
|
display: inline-block;
|
|
padding: 0px 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.enabledSetting {
|
|
border-left-color: #00796b;
|
|
border-left-style: solid;
|
|
border-left-width: 7px;
|
|
}
|
|
|
|
.disabledSetting {
|
|
padding-left: 22px;
|
|
}
|
|
|
|
.disabledSettingText {
|
|
color: #ccc;
|
|
pointer-events: none;
|
|
}
|
|
|