mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 12:19:31 +02:00
edited bg color for asidebar
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<aside class="bar">
|
<aside class="bar">
|
||||||
<div class="bar__content">
|
<div class="bar__content">
|
||||||
|
<div class="bar__blurry-bg"></div>
|
||||||
<div class="bar__buttons">
|
<div class="bar__buttons">
|
||||||
<a href="#" class="bar__button--home"> <img src="../assets/icons/icon-home-button.png"> </a>
|
<a href="#" class="bar__button--home"> <img src="../assets/icons/icon-home-button.png"> </a>
|
||||||
<div class="bar__settings">
|
<div class="bar__settings">
|
||||||
@@ -21,18 +22,35 @@ export default {
|
|||||||
.bar {
|
.bar {
|
||||||
width: 88px;
|
width: 88px;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background: #1D202B;
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
.bar__content {
|
.bar__content {
|
||||||
padding-top: 26px;
|
padding-top: 26px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
background: #1D202B;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: flex-start;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.bar__blurry-bg {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: #051B53;
|
||||||
|
filter: blur(39px);
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
.bar__buttons {
|
||||||
|
z-index: 2;
|
||||||
}
|
}
|
||||||
.bar__settings {
|
.bar__settings {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|||||||
Reference in New Issue
Block a user