blob: c0977dfc5392bfb01b275ae6b7e567b4045181b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@use '../global/globalCssVariables.module.scss' as global;
.card-button-container {
display: flex;
position: relative;
pointer-events: none;
border-radius: 50px;
align-items: center;
gap: 5px;
padding-left: 5px;
padding-right: 5px;
button {
pointer-events: auto;
width: 20px;
height: 20px;
margin: auto;
padding: 0px;
border-radius: 50%;
background-color: global.$dark-gray;
background-color: transparent;
}
}
|