fix: tweak dialogue, patch item, contributors ui

This commit is contained in:
afn
2023-04-20 22:22:00 -04:00
parent 80ae15bb18
commit 9734d9f64b
7 changed files with 26 additions and 15 deletions

View File

@@ -82,11 +82,18 @@
transition: all 0.3s var(--bezier-one);
}
a:hover {
text-decoration: underline;
text-decoration-style: wavy;
text-decoration-color: var(--grey-four);
}
a:hover::after {
transform: translateX(5px);
}
@media screen and (max-width: 768px) {
.text-container {
padding: 2rem 1.75rem;
margin-bottom: 2rem;
}
}

View File

@@ -36,6 +36,7 @@
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 0.25rem 0;
}
img {

View File

@@ -21,7 +21,7 @@
on:click={() => (expanded = !expanded)}
on:keypress={() => (expanded = !expanded)}
>
<a href="https://github.com/{repo}" rel="noreferrer" target="_blank">
<a href="https://github.com/{repo}" rel="noreferrer" target="_blank" on:click|stopPropagation>
<h4>{repo_name}</h4>
</a>
<img
@@ -72,7 +72,6 @@
}
a {
transition: all 0.3s var(--bezier-one);
display: flex;
text-decoration: none;
width: max-content;