Fixed #5214 - Move core alignment styles to theme files

This commit is contained in:
mertsincan 2024-02-05 10:44:41 +00:00
parent e1825987c0
commit 60f08422e6
80 changed files with 0 additions and 5062 deletions

View file

@ -1,29 +1,5 @@
import BaseStyle from 'primevue/base/style';
const css = `
@layer primevue {
.p-panel-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.p-panel-title {
line-height: 1;
}
.p-panel-header-icon {
display: inline-flex;
justify-content: center;
align-items: center;
cursor: pointer;
text-decoration: none;
overflow: hidden;
position: relative;
}
}
`;
const classes = {
root: ({ props }) => [
'p-panel p-component',
@ -42,6 +18,5 @@ const classes = {
export default BaseStyle.extend({
name: 'panel',
css,
classes
});