From 639138da8432e186827d22f47e65301716eac05d Mon Sep 17 00:00:00 2001 From: Thamognya Kodi Date: Sun, 1 Jan 2023 23:37:03 +0700 Subject: [PATCH] update: look at todo --- web/frontend/assets/css/url.module.scss | 30 ++++++++++++------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/web/frontend/assets/css/url.module.scss b/web/frontend/assets/css/url.module.scss index 21228af..ef74f47 100644 --- a/web/frontend/assets/css/url.module.scss +++ b/web/frontend/assets/css/url.module.scss @@ -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; }