update: look at todo

main
Thamognya Kodi 2023-01-01 23:37:03 +07:00
parent 1eed57de57
commit 639138da84
1 changed files with 15 additions and 15 deletions

View File

@ -1,23 +1,23 @@
.url {
display: inline-block;
position: relative;
color: #000;
display: inline-block;
position: relative;
color: #000;
}
.url::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #000;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #000;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
.url:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
transform: scaleX(1);
transform-origin: bottom left;
}