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