This commit is contained in:
Leonardo
2026-02-19 13:03:15 -03:00
parent 3a671b1e9e
commit 62e79e243a
20 changed files with 765 additions and 1 deletions

17
src/assets/demo/code.scss Normal file
View File

@@ -0,0 +1,17 @@
pre.app-code {
background-color: var(--code-background);
margin: 0 0 1rem 0;
padding: 0;
border-radius: var(--content-border-radius);
overflow: auto;
code {
color: var(--code-color);
padding: 1rem;
margin: 0;
line-height: 1.5;
display: block;
font-weight: semibold;
font-family: monaco, Consolas, monospace;
}
}

View File

@@ -0,0 +1,2 @@
@use './code.scss';
@use './flags/flags.css';

File diff suppressed because one or more lines are too long