updated info-modal
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good

This commit is contained in:
2022-02-02 22:11:57 +01:00
parent 23bc01d46f
commit 8a8a58fe88

View File

@@ -8,21 +8,11 @@
: info.type === 'success'
? 'bg-success text-white'
: 'bg-secondary text-white'"
class="card text-end">
<div class="card-header d-flex justify-content-between">
<div>
<span v-if="info.type !== 'success'">
Error <span class="mx-2">-</span> {{ info.statuscode }}
</span>
<span v-else>
Success
</span>
</div>
class="card">
<div class="card-body d-flex justify-content-between">
<span class="info-text">{{ info.message }}</span>
<button aria-label="Close" class="btn-close" type="button" @click="closeModal(id)"/>
</div>
<div class="card-body">
{{ info.message }}
</div>
</div>
</div>
</div>
@@ -63,7 +53,7 @@ export default {
<style lang="scss" scoped>
#modal {
--height: 100px;
--height: 56px;
.card {
z-index: 10;
@@ -71,11 +61,16 @@ export default {
right: 1rem;
opacity: .8;
width: min(100vw - 2rem, 50ch);
height: var(--height);
.btn-close {
background-color: white;
opacity: .5;
}
.info-text {
font-size: .8rem;
}
}
@for $i from 1 through 10 {
@@ -90,10 +85,4 @@ export default {
}
}
}
@media screen and (max-width: 768px) {
#modal {
--height: 120px;
}
}
</style>