discourse/app/assets/stylesheets/mobile/alert.scss
Arpit Jalan 10a1b6b0a9
FEATURE: update bootstrap mode notice to add invite and wizard links (#17822)
* 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
2022-08-10 00:13:42 +05:30

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;
}
}
}