Files
habitica/website/client/assets/scss/modal.scss
T
negue ade6d9689f new client - quest / seasonal / time travelers shops (#8903)
* initial quests.vue - refactorings - add group to quests

* shows quests by quest-group

* buyQuestModal with rewards sidebar

* store / actions to load seasonal/time-travelers shop data

* buyModal buyPressed instead of buyAction - seasonal shop categories now with specialClass property - seasonal shop

* time travelers vue - show hourglass in shopItem / buyDialog - fix banners

* cleanup

* show amount of already owned quests

* show html notes in popovers / dialog

* extract purchase-api to common.ops.purchaseWithSpell to call the same in the store / update the UI on purchases

* add time-travelers sprites

* fix lint

* add last mystery set images

* remove unused Page

* remove equipment from newClient.json
2017-07-31 17:04:40 -06:00

40 lines
637 B
SCSS

@import '~client/assets/scss/colors.scss';
@mixin centeredModal() {
display: flex;
justify-content: center;
flex-direction: column;
header, footer {
border: 0;
}
}
.modal-dialog {
.title {
height: 24px;
margin-top: 24px;
font-family: 'Roboto Condensed';
font-size: 20px;
font-weight: bold;
line-height: 1.2;
text-align: center;
color: $gray-50;
display: inline-block;
}
.text {
min-height: 60px;
font-family: Roboto;
font-size: 14px;
line-height: 1.43;
text-align: center;
color: $gray-100;
overflow-y: hidden;
text-overflow: ellipsis;
}
}