mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:04:21 +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
29 lines
484 B
SCSS
29 lines
484 B
SCSS
.alert.alert-info {
|
|
&.clickable {
|
|
// there are (n) new or updated topics, click to show
|
|
margin: 0;
|
|
padding: 1em;
|
|
}
|
|
}
|
|
|
|
.alert-bootstrap-mode {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
|
|
.col-button {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding-top: 10px;
|
|
justify-content: center;
|
|
.alert--button,
|
|
.alert--link {
|
|
align-self: center;
|
|
}
|
|
.alert--link {
|
|
font-weight: bold;
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
}
|