🎨 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:
39
dealplustech-astro/node_modules/log-symbols/readme.md
generated
vendored
Normal file
39
dealplustech-astro/node_modules/log-symbols/readme.md
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
# log-symbols
|
||||
|
||||
<img src="screenshot.png" width="226" height="192" align="right">
|
||||
|
||||
> Colored symbols for various log levels
|
||||
|
||||
Includes fallbacks for Windows CMD which only supports a [limited character set](https://en.wikipedia.org/wiki/Code_page_437).
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install log-symbols
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import logSymbols from 'log-symbols';
|
||||
|
||||
console.log(logSymbols.success, 'Finished successfully!');
|
||||
// Terminals with Unicode support: ✔ Finished successfully!
|
||||
// Terminals without Unicode support: √ Finished successfully!
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### logSymbols
|
||||
|
||||
#### info
|
||||
#### success
|
||||
#### warning
|
||||
#### error
|
||||
|
||||
## Related
|
||||
|
||||
- [figures](https://github.com/sindresorhus/figures) - Unicode symbols with Windows CMD fallbacks
|
||||
- [py-log-symbols](https://github.com/ManrajGrover/py-log-symbols) - Python port
|
||||
- [log-symbols](https://github.com/palash25/log-symbols) - Ruby port
|
||||
- [guumaster/logsymbols](https://github.com/guumaster/logsymbols) - Golang port
|
||||
Reference in New Issue
Block a user