Abhijith Vijayan [FLUXON] 72fa5db993 feat: use css modules
2026-01-03 19:38:23 +05:30

34 lines
586 B
SCSS

@use "../../styles/variables";
.wrapper {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 16px;
background: variables.$greyWhite;
border-radius: variables.$radiusMd;
cursor: pointer;
transition: all 0.2s ease;
border: 2px solid transparent;
&:hover {
background: #eef2f7;
border-color: variables.$border;
}
}
.checkbox {
width: 20px;
height: 20px;
margin-top: 2px;
cursor: pointer;
accent-color: variables.$primary;
}
.text {
font-size: 14px;
line-height: 1.5;
color: variables.$skyBlue;
font-weight: variables.$medium;
}