mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-21 06:02:34 -05:00
feat: use plugin styles
This commit is contained in:
parent
ccdead2ebe
commit
ce7b3b5859
6 changed files with 10 additions and 13 deletions
|
@ -52,14 +52,11 @@ svg {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 0.5rem;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
margin-bottom: 10px;
|
||||
p {
|
||||
margin-bottom: var(--spacing-12);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 20px;
|
||||
margin-bottom: 10px;
|
||||
margin-bottom: var(--spacing-12);
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import 'plugins-styles/lib/styles.css';
|
||||
import './app.element.css';
|
||||
|
||||
export class AppElement extends HTMLElement {
|
||||
|
@ -24,17 +25,17 @@ export class AppElement extends HTMLElement {
|
|||
});
|
||||
|
||||
this.innerHTML = `
|
||||
<div class="wrapper">
|
||||
<div class="wrapper" data-theme="light">
|
||||
<h1>Test area</h1>
|
||||
|
||||
<p>Current project name: <span id="project-name">Unknown</span></p>
|
||||
|
||||
<p>
|
||||
<button type="button" class="act-ping-pong">Ping Pong message</button>
|
||||
<button type="button" data-appearance="primary" class="act-ping-pong">Ping Pong message</button>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<button type="button" class="act-close-plugin">Close plugin</button>
|
||||
<button type="button" data-appearance="primary" data-variant="destructive" class="act-close-plugin">Close plugin</button>
|
||||
</p>
|
||||
</div>
|
||||
`;
|
||||
|
|
|
@ -87,7 +87,7 @@ export class PluginModalElement extends HTMLElement {
|
|||
}
|
||||
|
||||
h1 {
|
||||
color: blue;
|
||||
color: #000;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
export * from './lib/plugins-styles';
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.base.json",
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"plugins-runtime": ["libs/plugins-runtime/src/index.ts"],
|
||||
"plugins-styles": ["libs/plugins-styles/src/index.ts"]
|
||||
"plugins-styles/*": ["libs/plugins-styles/src/*"]
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules", "tmp"]
|
||||
|
|
Loading…
Add table
Reference in a new issue