mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:35:14 +08:00
24 lines
379 B
SCSS
24 lines
379 B
SCSS
|
.alert-bootstrap-mode {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
padding: 10px;
|
||
|
|
||
|
.col-text {
|
||
|
width: 85%;
|
||
|
}
|
||
|
.col-button {
|
||
|
width: 15%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
.alert--button,
|
||
|
.alert--link {
|
||
|
align-self: center;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
.alert--link {
|
||
|
font-weight: bold;
|
||
|
padding-top: 5px;
|
||
|
}
|
||
|
}
|
||
|
}
|