mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2025-12-06 07:34:06 +00:00
33 lines
517 B
CSS
33 lines
517 B
CSS
.graph_wrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100vh;
|
|
color: black;
|
|
}
|
|
|
|
.loading {
|
|
filter: brightness(70%);
|
|
}
|
|
|
|
.operations_wrapper {
|
|
display: flex;
|
|
background-color: var(--bgNav);
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: var(--mb-1);
|
|
height: 100vh;
|
|
width: 10vw;
|
|
position: sticky;
|
|
position: -webkit-sticky;
|
|
top: 0;
|
|
right: 0;
|
|
overflow: auto;
|
|
padding: var(--mb-3);
|
|
}
|
|
|
|
.operations_wrapper .icons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|