Linktree elements will have the full pill shape clickable

This commit is contained in:
2024-07-24 14:35:43 -07:00
parent 854e015282
commit e4306a30a5

View File

@ -104,14 +104,12 @@ ul.linktree {
ul.linktree li {
margin: 12px;
background-color: #4c5053;
padding: 8px 16px;
border-radius: 50px;
text-align: center;
transition-duration: 0.5s;
}
ul.linktree li:hover {
ul.linktree li a:hover {
cursor: pointer;
background-color: #383c3f
}
@ -119,6 +117,15 @@ ul.linktree li:hover {
ul.linktree li a {
text-decoration: none;
color: white;
background-color: #4c5053;
padding: 8px;
border-radius: 50px;
transition-duration: 0.5s;
display: inline-block;
width: 100%;
box-sizing: border-box;
}
div.footer {