From b15eb7e3aa0cce056e5c86be54af33aa4b00fb13 Mon Sep 17 00:00:00 2001 From: dragon1211 Date: Sun, 7 Nov 2021 16:41:47 +0900 Subject: [PATCH] bugfixed child-side.jsx --- backend/public/css/app.css | 10 ++++++++++ backend/resources/sass/layouts/_main.scss | 14 ++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/backend/public/css/app.css b/backend/public/css/app.css index 4bae6abe..d2de9db1 100644 --- a/backend/public/css/app.css +++ b/backend/public/css/app.css @@ -12300,3 +12300,13 @@ a { -o-object-fit: contain; object-fit: contain; } + +.mypage-nav-list__item.nav-active .prof-wrap { + border: 1px solid #F0DE00 !important; +} +@media screen and (min-width: 1024px) { + .mypage-nav-list__item .prof-wrap { + width: 24px !important; + height: 24px !important; + } +} diff --git a/backend/resources/sass/layouts/_main.scss b/backend/resources/sass/layouts/_main.scss index 8efefef4..31bfb362 100644 --- a/backend/resources/sass/layouts/_main.scss +++ b/backend/resources/sass/layouts/_main.scss @@ -183,4 +183,18 @@ a{ height: 100%; object-fit: contain; } +} + +.mypage-nav-list__item{ + &.nav-active{ + .prof-wrap{ + border: 1px solid #F0DE00 !important;; + } + } + .prof-wrap{ + @media screen and (min-width:1024px){ + width: 24px !important; + height: 24px !important; + } + } } \ No newline at end of file