FIX: Screen shaking on mobile view navigation (#45)
Setting a border on the `fullscreen-table-wrapper` element causes a small shake in mobile views, especially on topics with multiple tables. This PR removes the border on the table entirely. This was an almost invisible visual effect when selecting the table (small border width, whole table is set to 50% opacity). It also makes a small refactor, moving the styles of the button outside of the hover state.
This commit is contained in:
parent
f91876f8d3
commit
d754e7a2ec
|
@ -18,23 +18,21 @@
|
|||
.mobile-view {
|
||||
.btn-edit-table {
|
||||
display: none;
|
||||
z-index: 2;
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
left: 1rem;
|
||||
}
|
||||
|
||||
.fullscreen-table-wrapper {
|
||||
position: relative;
|
||||
border: 1px solid transparent;
|
||||
|
||||
&:hover {
|
||||
border: 1px solid var(--primary-low);
|
||||
table {
|
||||
opacity: 0.5;
|
||||
}
|
||||
.btn-edit-table {
|
||||
z-index: 2;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
left: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue