Skip to content

Commit

Permalink
Added changelog page to landing
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech committed Feb 26, 2024
1 parent 42f630c commit 7ab2de9
Show file tree
Hide file tree
Showing 16 changed files with 783 additions and 83 deletions.
18 changes: 17 additions & 1 deletion web/landing/assets/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import 'changelog.css';

@tailwind base;
@tailwind components;
@tailwind utilities;
Expand All @@ -8,4 +10,18 @@ body {

.unset {
inset: unset;
}
}

nav a {
@apply font-medium text-white dark:text-white hover:underline;
}

footer a {
@apply font-medium text-white dark:text-white hover:underline;
}

a {
font-weight: normal;
@apply font-medium text-blue-600 dark:text-blue-500 hover:underline;
}

23 changes: 23 additions & 0 deletions web/landing/assets/styles/changelog.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
section#changelog {

}

section#changelog h2 {
margin-bottom: 10px;
font-size: 2rem;
font-weight: bold;
}

section#changelog h3 {
margin-bottom: 10px;
font-size: 1.5rem;
}

section#changelog ul {
margin-bottom: 10px;
margin-left: 15px;
}

section#changelog ul li strong {
font-weight: normal;
}
5 changes: 4 additions & 1 deletion web/landing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
"symfony/stimulus-bundle": "^2.14",
"monolog/monolog": "^3.5",
"symfony/monolog-bundle": "^3.10",
"coduo/php-humanizer": "^4.0"
"coduo/php-humanizer": "^4.0",
"twig/markdown-extra": "^3.8",
"twig/extra-bundle": "^3.8",
"league/commonmark": "^2.4"
},
"require-dev": {
"symfony/web-profiler-bundle": "^6.4",
Expand Down
Loading

0 comments on commit 7ab2de9

Please sign in to comment.