mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 21:13:12 +08:00
46 lines
719 B
CSS
46 lines
719 B
CSS
.root {
|
|
width: 200px;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.message {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.title {
|
|
padding: 0;
|
|
margin: 0 0 8px 0;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.button {
|
|
composes: buttonReset from "coral-framework/styles/reset.css";
|
|
border: 1px solid rgba(1, 1, 1, 0.8);
|
|
border-radius: 1px;
|
|
padding: 3px 6px;
|
|
font-size: 12px;
|
|
transition: color 100ms, background 100ms;
|
|
|
|
&:hover {
|
|
background-color: rgba(1, 1, 1, 0.8);
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.cancel {
|
|
composes: buttonReset from "coral-framework/styles/reset.css";
|
|
padding: 3px 6px;
|
|
font-size: 12px;
|
|
transition: color 100ms;
|
|
margin-right: 4px;
|
|
|
|
&:hover {
|
|
color: rgba(1, 1, 1, 0.75);
|
|
}
|
|
}
|