35 lines
568 B
SCSS
35 lines
568 B
SCSS
.add-user {
|
|
position: sticky;
|
|
top: 40px;
|
|
width: 100%;
|
|
background: #fff;
|
|
z-index: 10;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 1rem 0.5rem;
|
|
border-bottom: 1px solid #eee;
|
|
|
|
&__button {
|
|
padding: 0.5rem 1rem;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
&__button--primary {
|
|
background: #1976d2;
|
|
color: #fff;
|
|
}
|
|
|
|
&__button--secondary {
|
|
background: #e0e0e0;
|
|
color: #333;
|
|
}
|
|
}
|