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,32 +1,5 @@
import BaseStyle from 'primevue/base/style';
const css = `
@layer primevue {
.p-terminal {
height: 18rem;
overflow: auto;
}
.p-terminal-prompt-container {
display: flex;
align-items: center;
}
.p-terminal-input {
flex: 1 1 auto;
border: 0 none;
background-color: transparent;
color: inherit;
padding: 0;
outline: 0 none;
}
.p-terminal-input::-ms-clear {
display: none;
}
}
`;
const classes = {
root: 'p-terminal p-component',
content: 'p-terminal-content',
@ -39,6 +12,5 @@ const classes = {
export default BaseStyle.extend({
name: 'terminal',
css,
classes
});