discourse/app/assets/stylesheets/desktop/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

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