mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* refactor(web): split global CSS by ownership * test(web): expand CSS imports in style checks * fix(web): keep privacy consent banner above modals
11 lines
429 B
TypeScript
11 lines
429 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { readExpandedIndexCss } from '../helpers/read-expanded-css';
|
|
|
|
describe('plugin share confirmation styles', () => {
|
|
it('keeps the publish dialog footer away from the modal edge', () => {
|
|
const css = readExpandedIndexCss();
|
|
|
|
expect(css).toContain('.plugin-share-confirm .plugin-details-modal__foot');
|
|
expect(css).toContain('padding: 16px 24px 22px;');
|
|
});
|
|
});
|