Job-Scorer / components /WelcomeCreditsBanner.module.css
zimejin's picture
feat: welcome credits default, banner, FTUX launcher draft, subscriber query persistence
8875123
Raw
History Blame Contribute Delete
674 Bytes
.banner {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 0 auto 12px;
max-width: 960px;
padding: 10px 12px;
border-radius: 8px;
border: 1px solid var(--job-launcher-chip-on-border, #378add33);
background: var(--surface-muted, #f0f4f8);
color: var(--text, #1a1a1a);
font-size: 14px;
line-height: 1.45;
}
.text {
margin: 0;
flex: 1;
}
.dismiss {
flex-shrink: 0;
width: 28px;
height: 28px;
border: none;
border-radius: 6px;
background: transparent;
color: var(--muted, #666);
font-size: 20px;
line-height: 1;
cursor: pointer;
}
.dismiss:hover {
background: var(--surface, #fff);
color: var(--text, #1a1a1a);
}