blob: 3ec875df4d1a127c3d6ed7b389c7d1d4d189b769 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@import '../global/globalCssVariables.module.scss';
.collectionMenu-container {
display: flex;
position: relative;
align-content: center;
justify-content: space-between;
background-color: $dark-gray;
height: 35px;
border-bottom: $standard-border;
padding: 0 10px;
align-items: center;
overflow-x: auto;
&::-webkit-scrollbar {
display: none;
}
.hardCodedButtons {
display: flex;
flex-direction: row;
}
}
|