fix: better overflow for gates
This commit is contained in:
parent
15bca45965
commit
9f8aa510db
1 changed files with 4 additions and 3 deletions
|
|
@ -9,6 +9,7 @@ $portal_icon_size: 64px;
|
||||||
|
|
||||||
.portal {
|
.portal {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -18,8 +19,8 @@ $portal_icon_size: 64px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-right: $portal_margin;
|
padding-right: $portal_margin;
|
||||||
padding-left: $portal_margin;
|
padding-left: $portal_margin;
|
||||||
// overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
// overflow-y: auto;
|
overflow-y: auto;
|
||||||
transition: flex 500ms cubic-bezier(0, 0, 0.2, 1.4), background 800ms ease;
|
transition: flex 500ms cubic-bezier(0, 0, 0.2, 1.4), background 800ms ease;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
@ -55,7 +56,7 @@ $portal_icon_size: 64px;
|
||||||
.portal__link {
|
.portal__link {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: $portal_link_size;
|
max-width: $portal_link_size;
|
||||||
height: $portal_link_size;
|
height: $portal_link_size;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue