mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
30 lines
524 B
SCSS
30 lines
524 B
SCSS
@use "../../styles/variables";
|
|
|
|
.card {
|
|
background: variables.$cardBg;
|
|
border-radius: variables.$radiusLg;
|
|
padding: 18px;
|
|
box-shadow: variables.$shadowMd;
|
|
border: 1px solid variables.$border;
|
|
}
|
|
|
|
.large {
|
|
padding: 28px;
|
|
box-shadow: variables.$shadowLg;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 11px;
|
|
font-weight: variables.$bold;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
color: variables.$skyBlue;
|
|
}
|