fix(directory): style fix

This commit is contained in:
Haoyu Xu
2023-10-23 17:09:52 -04:00
parent 67daf20aa7
commit 40b5d85a54
4 changed files with 9 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ export default function Dropdown(props) {
}
const onMouseEnter = useCallback((item) => {
document.documentElement.style.setProperty('--cursor-color', item.color);
document.documentElement.style.setProperty('--cursor-color', item.color ? item.color : 'var(--text-color)');
}, [])
const onMouseLeave = useCallback(() => {

View File

@@ -17,6 +17,8 @@
flex-direction: row;
align-items: center;
color: var(--text-color);
height: 2em;
min-width: 2em;
&:hover {
.popup {
@@ -34,7 +36,7 @@
max-height: 61.8vh;
max-width: 61.8vw;
z-index: -1;
top: 2em;
top: 2.5em;
right: 0;
transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 0.3s;
overflow: auto;
@@ -65,7 +67,7 @@
border-bottom: 0.15em solid var(--text-color);
border-right: 0.15em solid var(--text-color);
border-top: 0.15em solid var(--text-color);
transform: translateY(-0.2em) rotate(-45deg);
transform: translateY(-0.7em) rotate(-45deg);
}
.menu {
@@ -77,9 +79,8 @@
max-height: 61.8vh;
max-width: 61.8vw;
z-index: -1;
top: 2em;
top: 2.5em;
right: 0;
gap: 0.5rem;
display: flex;
align-items: stretch;
flex-direction: column;

View File

@@ -319,7 +319,7 @@ function HeaderButton() {
iconStyle={{
borderWidth: '0.15em',
width: '1em',
transform: 'translateY(0.1rem) translateX(0.1rem) rotate(-45deg)',
transform: 'translateY(-0.4rem) translateX(-0.7rem) rotate(-45deg)',
height: '1em',
}}
left={true}

View File

@@ -17,6 +17,8 @@
.fast-navigate {
pointer-events: auto;
margin-left: 0.6rem;
height: 2rem;
width: 2rem;
}
.dropdown {