876552b922
* add hourglass to header * multiple quest fixes - show quest info in popover/modal * pin backgrounds * unpin gem-purchable items / change pinType of quest to quests * check if hatching potion is allowed on egg - wide hatching info * fix (perf): items - request text()/notes() only once * change items margin to 23px * list cards + open modal to choose a target + add space between market items * buy card from task-list * fix tests - unpin items on purchasing eggs / hatchingPotions
39 lines
614 B
SCSS
39 lines
614 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 {
|
|
min-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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
}
|