Commit 044c1231 authored by guerler's avatar guerler
Browse files

Fix lint, declare tooltip before class

parent cbc4aae8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,8 +45,8 @@ const getStoragePercentageClass = (percentage: number) => {
                    <FontAwesomeIcon :icon="faAt" class="user-details-icon p-2" />
                    <span
                        id="user-preferences-current-email"
                        class="word-wrap-break"
                        v-b-tooltip.hover.noninteractive
                        class="word-wrap-break"
                        title="Your email address">
                        {{ userEmail }}
                    </span>
+6 −5
Original line number Diff line number Diff line
@@ -44,17 +44,18 @@
    overflow-y: auto !important;
}

// utility class to set word wrap to normal
.word-wrap-normal {
    word-wrap: normal;
}

// utility class to wrap words or break if necessary
.word-wrap-break {
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
}

// utility class to set word wrap to normal
.word-wrap-normal {
    word-wrap: normal;
}

// utility class to set white space wrapping to normal
.white-space-normal {
    white-space: normal;