mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:01:11 +08:00
10a1b6b0a9
* FEATURE: update bootstrap mode notice to add invite and wizard links * Updates per feedback on PR * Fix the wizard link not showing * Remove unneeded function * Remove router service injection
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;
|
|
}
|
|
}
|
|
}
|