Updated speeddial tokens

pull/5756/head
Cagatay Civici 2024-05-09 12:22:28 +03:00
parent 3be07eca1d
commit 438440072f
4 changed files with 13 additions and 7 deletions

View File

@ -4,13 +4,11 @@ const theme = ({ dt }) => `
.p-speeddial {
position: static;
display: flex;
gap: 0.25rem;
gap: ${dt('speeddial.gap')};
}
.p-speeddial-button {
z-index: 1;
width: 2.5rem;
height: 2.5rem;
}
.p-speeddial-button.p-speeddial-rotate {
@ -30,7 +28,7 @@ const theme = ({ dt }) => `
pointer-events: none;
outline: 0 none;
z-index: 2;
gap: 0.25rem;
gap: ${dt('speeddial.gap')};
}
.p-speeddial-item {

View File

@ -1 +1,5 @@
export default {};
export default {
root: {
gap: '0.5rem'
}
};

View File

@ -5,7 +5,7 @@ export default {
gap: '0.5rem',
paddingX: '{form.field.padding.x}',
paddingY: '{form.field.padding.y}',
iconOnlyWidth: '2.5rem',
iconOnlyWidth: '2.75rem',
sm: {
fontSize: '0.875rem',
paddingX: '0.625rem',

View File

@ -1 +1,5 @@
export default {};
export default {
root: {
gap: '0.5rem'
}
};