mirror of
https://github.com/directus/directus.git
synced 2026-01-26 16:48:21 -05:00
hide overflow and location when on mobile (#4286)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user