From ac88179ac9fb3fe9d382e5b24325f298d9704c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=B0=BD=EC=88=98?= Date: Fri, 11 Oct 2024 16:49:37 +0900 Subject: [PATCH] =?UTF-8?q?=ED=88=B4=ED=8C=81=20css=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/_table.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/styles/_table.scss b/src/styles/_table.scss index 5aa068d..217bfe1 100644 --- a/src/styles/_table.scss +++ b/src/styles/_table.scss @@ -115,7 +115,27 @@ table{ cursor: pointer; span{ position: absolute; + top: -25px; + left: -10px; + padding: 3px 7px; + font-size: 11px; + font-weight: 400; + color: #344356; + background-color: #F7F9FA; + border: 1px solid #ECF0F4; + border-radius: 30px; white-space: nowrap; + opacity: 0; + visibility: hidden; + z-index: 99; + transition: all .15s ease-in-out; + } + &:hover{ + span{ + top: -30px; + opacity: 1; + visibility: visible; + } } } }