diff options
| author | Henry Jameson <me@hjkos.com> | 2020-06-02 01:16:10 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-06-02 01:16:10 +0300 |
| commit | de3a376bebb25fefb1fe513c3491ee6c4e48af0f (patch) | |
| tree | 939800a1ca1ddd5b30a996a1ffbde6b64ef313b7 /src | |
| parent | 1f205b87ac906f67fa8e72530d18977bca085296 (diff) | |
fixed case in class name
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 1c287aa7..3137cb9d 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -28,17 +28,17 @@ </small> <small v-if="showReasonMutedThread && muteWordHits.length === 0" - class="mutedThread" + class="muted-thread" > {{ $t('status.thread_muted') }} </small> <small v-if="showReasonMutedThread && muteWordHits.length > 0" - class="mutedThread" + class="muted-Thread" > {{ $t('status.thread_muted_and_words') }} </small> - <small class="muteWords">{{ muteWordHits.join(', ') }}</small> + <small class="mute-words">{{ muteWordHits.join(', ') }}</small> <a href="#" class="unmute" @@ -658,7 +658,7 @@ $status-margin: 0.75em; margin-left: auto; } - .mutedThread, .muteWords { + .muted-thread, .mute-words { margin-left: 10px; } } |
