primevue-mirror/components/lib/theme/aura/toolbar/index.js

46 lines
1.0 KiB
JavaScript
Raw Normal View History

2024-02-10 09:48:36 +00:00
export default {
2024-02-12 15:03:19 +00:00
variables: {
colorScheme: {
light: {
root: {
background: '{surface.0}',
borderColor: '{surface.200}',
textColor: '{surface.700}'
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
textColor: '{surface.0}'
}
}
}
},
2024-02-10 09:48:36 +00:00
css: `
.p-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
padding: 0.75rem;
2024-02-12 15:03:19 +00:00
background: var(--p-toolbar-background);
border: 1px solid var(--p-toolbar-border-color);
color: var(--p-toolbar-text-color);
border-radius: var(--p-rounded-base);
2024-02-10 09:48:36 +00:00
gap: 0.5rem;
}
.p-toolbar-group-start,
.p-toolbar-group-center,
.p-toolbar-group-end {
display: flex;
align-items: center;
}
.p-toolbar-separator {
margin: 0 0.5rem;
}
`
};