mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
26 lines
443 B
CSS
26 lines
443 B
CSS
.linkWrapper {
|
|
user-select: none;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
background-color: light-dark(var(--mantine-color-white), rgb(50, 58, 71));
|
|
padding: 0.5em 0.75em !important;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.linkWrapper:hover {
|
|
border: 1px solid var(--mantine-color-blue-4);
|
|
}
|
|
|
|
.linkUrl {
|
|
transition: opacity 0.15s;
|
|
}
|
|
|
|
.linkWrapper:hover .linkUrlPathname {
|
|
opacity: 1;
|
|
}
|
|
|
|
.linkUrlPathname {
|
|
opacity: 0;
|
|
transition: opacity 0.15s;
|
|
}
|