2023-03-25 23:38:15 +00:00
|
|
|
.btn-group {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
2023-04-05 23:35:11 +00:00
|
|
|
flex-wrap: nowrap;
|
2023-03-25 23:38:15 +00:00
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group button {
|
|
|
|
padding: 10px; /* Some padding */
|
|
|
|
cursor: pointer; /* Pointer/hand icon */
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group button:hover {
|
|
|
|
filter: brightness(85%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group button.accept {
|
|
|
|
background-color: var(--button-accept);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group button.cancel {
|
|
|
|
background-color: var(--button-cancel);
|
|
|
|
}
|
|
|
|
|
|
|
|
img.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|