🎨 Fix CSS: Import global.css + plain CSS styles
CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
This commit is contained in:
23
dealplustech-astro/node_modules/yaml/dist/compose/resolve-props.d.ts
generated
vendored
Normal file
23
dealplustech-astro/node_modules/yaml/dist/compose/resolve-props.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { SourceToken, Token } from '../parse/cst';
|
||||
import type { ComposeErrorHandler } from './composer';
|
||||
export interface ResolvePropsArg {
|
||||
flow?: 'flow map' | 'flow sequence';
|
||||
indicator: 'doc-start' | 'explicit-key-ind' | 'map-value-ind' | 'seq-item-ind';
|
||||
next: Token | null | undefined;
|
||||
offset: number;
|
||||
onError: ComposeErrorHandler;
|
||||
parentIndent: number;
|
||||
startOnNewline: boolean;
|
||||
}
|
||||
export declare function resolveProps(tokens: SourceToken[], { flow, indicator, next, offset, onError, parentIndent, startOnNewline }: ResolvePropsArg): {
|
||||
comma: SourceToken | null;
|
||||
found: SourceToken | null;
|
||||
spaceBefore: boolean;
|
||||
comment: string;
|
||||
hasNewline: boolean;
|
||||
anchor: SourceToken | null;
|
||||
tag: SourceToken | null;
|
||||
newlineAfterProp: SourceToken | null;
|
||||
end: number;
|
||||
start: number;
|
||||
};
|
||||
Reference in New Issue
Block a user