mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
website: updagre text size (#2363)
* updagre text size * try latest pnpm * Update website.yml * Update website.yml
This commit is contained in:
parent
8a8f2b6774
commit
2f033888e4
5 changed files with 17 additions and 7 deletions
|
@ -22,7 +22,7 @@ .featureCard {
|
|||
|
||||
p {
|
||||
color: var(--p-color);
|
||||
font-size: 0.875rem;
|
||||
font-size: var(--font-size);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.link {
|
||||
font-weight: 600;
|
||||
padding: 0.575rem;
|
||||
font-size: 0.875rem;
|
||||
font-size: var(--font-size);
|
||||
width: 100%;
|
||||
border-radius: 1rem;
|
||||
text-decoration: none;
|
||||
|
|
|
@ -15,7 +15,17 @@ h3 {
|
|||
font-size: var(--ifm-h3-font-size);
|
||||
}
|
||||
|
||||
p {
|
||||
p,
|
||||
li,
|
||||
a {
|
||||
color: var(--p-color);
|
||||
font-size: 0.875rem;
|
||||
font-size: var(--font-size);
|
||||
}
|
||||
|
||||
@media (min-width: 1000px) {
|
||||
p,
|
||||
li,
|
||||
a {
|
||||
font-size: var(--font-size-big);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,8 +20,8 @@ :root {
|
|||
--twitter-color: #1595de;
|
||||
--red: #cd4001;
|
||||
--p-color: #5c5c5c;
|
||||
|
||||
--ifm-code-font-size: 95%;
|
||||
--font-size: 0.875rem;
|
||||
--font-size-big: calc(var(--font-size) * 1.2);
|
||||
}
|
||||
|
||||
html[data-theme='dark']:root {
|
||||
|
|
Loading…
Reference in a new issue