feat: reduce ready selector specificity
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2022-11-11 21:48:16 +01:00
parent 163d9366d3
commit 36906a1fd1
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@
<div class="offline" style="height: 0;width: 0;"></div> <div class="offline" style="height: 0;width: 0;"></div>
<div class="app offline" v-if="!online"> <div class="app offline" v-if="!online">
<div class="offline-message"> <div class="offline-message">
<h1>{{ $t('offline.title') }}</h1> <h1 class="title">{{ $t('offline.title') }}</h1>
<p>{{ $t('offline.text') }}</p> <p>{{ $t('offline.text') }}</p>
</div> </div>
</div> </div>
@ -128,14 +128,14 @@ load()
bottom: 5vh; bottom: 5vh;
color: $white; color: $white;
padding: 0 1rem; padding: 0 1rem;
}
h1 { .title {
font-weight: bold; font-weight: bold;
font-size: 1.5rem; font-size: 1.5rem;
text-align: center; text-align: center;
color: $white; color: $white;
font-weight: 700 !important; font-weight: 700 !important;
font-size: 1.5rem; font-size: 1.5rem;
}
} }
</style> </style>