hide overflow and location when on mobile (#4286)

This commit is contained in:
Nitwel
2021-02-25 15:59:24 +01:00
committed by GitHub
parent 0db81f13ff
commit 496768af2f

View File

@@ -563,6 +563,7 @@ export default defineComponent({
.user-box-content {
flex-grow: 1;
overflow: hidden;
.v-skeleton-loader {
width: 175px;
@@ -592,10 +593,22 @@ export default defineComponent({
.location {
color: var(--foreground-subdued);
}
.name {
white-space: nowrap;
}
.location {
display: none;
}
}
@include breakpoint(small) {
height: 172px;
.user-box-content .location {
display: block;
}
}
}
</style>