From 942c599cef064e1f4493b7fff2b9af8df2ca7542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yusuf=20=C4=B0pek?= Date: Sat, 22 Jan 2022 17:37:01 +0300 Subject: [PATCH 1/2] =?UTF-8?q?Blur=20desteklemeyen=20taray=C4=B1c=C4=B1la?= =?UTF-8?q?r=20i=C3=A7in=20arkaplan=20opakl=C4=B1=C4=9F=C4=B1=20bire=20?= =?UTF-8?q?=C3=A7=C4=B1kar=C4=B1ld=C4=B1.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/SideBar.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/components/SideBar.vue b/components/SideBar.vue index 558f6ad..feb71d0 100644 --- a/components/SideBar.vue +++ b/components/SideBar.vue @@ -1185,4 +1185,22 @@ export default { font-size: 12px; color: $white; } + +@supports not (backdrop-filter: blur()) { + .sidebar { + background-color: rgba(10, 12, 16, 1); + } + + .mobile-sidebar { + background-color: rgba(10, 12, 16, 1); + } + + .oriented-sidebar { + background-color: rgba(10, 12, 16, 1); + } + + .close-btn { + background-color: rgba(10, 12, 16, 1); + } +} From 37cb2d69637d2a9f2642a251a423d81e565fba18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yusuf=20=C4=B0pek?= Date: Sat, 22 Jan 2022 17:55:25 +0300 Subject: [PATCH 2/2] =?UTF-8?q?Blur=20desteklemeyen=20taray=C4=B1c=C4=B1la?= =?UTF-8?q?r=20i=C3=A7in=20arkaplan=20opakl=C4=B1=C4=9F=C4=B1=20bire=20?= =?UTF-8?q?=C3=A7=C4=B1kar=C4=B1ld=C4=B1.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/SideBar.vue | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/components/SideBar.vue b/components/SideBar.vue index feb71d0..6e41b00 100644 --- a/components/SideBar.vue +++ b/components/SideBar.vue @@ -1187,18 +1187,9 @@ export default { } @supports not (backdrop-filter: blur()) { - .sidebar { - background-color: rgba(10, 12, 16, 1); - } - - .mobile-sidebar { - background-color: rgba(10, 12, 16, 1); - } - - .oriented-sidebar { - background-color: rgba(10, 12, 16, 1); - } - + .sidebar, + .mobile-sidebar, + .oriented-sidebar, .close-btn { background-color: rgba(10, 12, 16, 1); }