mirror of
https://github.com/Floriansylvain/Exo-technique-VIE-Barcelone-SaaS-HRTech.git
synced 2026-08-19 19:53:23 +02:00
43 lines
744 B
CSS
43 lines
744 B
CSS
.toolbar {
|
|
background: #1f2937;
|
|
color: #fff;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px 14px;
|
|
font-family: Inter, system-ui, Arial, sans-serif
|
|
}
|
|
|
|
.toolbar button {
|
|
background: #fff;
|
|
color: #111;
|
|
border: 0;
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
cursor: pointer
|
|
}
|
|
|
|
.toolbar button.active {
|
|
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15)
|
|
}
|
|
|
|
.toolbar button.toolbar-close {
|
|
margin-left: auto;
|
|
background: transparent;
|
|
color: #fff;
|
|
border: 1px solid rgba(255, 255, 255, 0.08)
|
|
}
|
|
|
|
.toolbar-modules {
|
|
width: 100%;
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.error-message {
|
|
color: crimson;
|
|
}
|