File size: 540 Bytes
bae9410 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
.feedback-buttons {
display: flex;
flex-direction: row;
}
.feedback-button[disabled] {
/* VSCodeButton's default cursor is not-allowed, but that's different to
native VS Code and feels off, especially when it quickly changes to
not-allowed after you submit feedback. So we reset it back to the
default cursor to fit in nicer with standard VS Code native behaviour */
cursor: default;
}
.thumbs-down-feedback-container {
display: flex;
align-items: center;
gap: calc(var(--spacing) / 4);
}
|