Fixed bio and profile nav overflow, scene page channel name when no logo.
This commit is contained in:
@@ -17,7 +17,8 @@
|
||||
|
||||
<nav
|
||||
v-if="profile.id === user?.id"
|
||||
class="domains"
|
||||
class="domains nobar"
|
||||
@wheel.prevent="scrollHorizontal"
|
||||
>
|
||||
<a
|
||||
:href="`/user/${profile.username}/stashes`"
|
||||
@@ -117,6 +118,10 @@ const mockupRelease = {
|
||||
name: 'Traxxx',
|
||||
},
|
||||
};
|
||||
|
||||
function scrollHorizontal(event) {
|
||||
event.currentTarget.scrollLeft += event.deltaY; // eslint-disable-line no-param-reassign
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
@@ -213,6 +218,7 @@ const mockupRelease = {
|
||||
}
|
||||
|
||||
.domain {
|
||||
flex-shrink: 0;
|
||||
color: var(--glass-strong-20);
|
||||
background: var(--background-dark-20);
|
||||
padding: .5rem 1rem;
|
||||
@@ -257,7 +263,6 @@ const mockupRelease = {
|
||||
}
|
||||
|
||||
.domains {
|
||||
justify-content: center;
|
||||
padding: .5rem .5rem;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user