Skip to content

Commit

Permalink
cleanup: revert importing Inter font in fonts.scss
Browse files Browse the repository at this point in the history
It causes random issues, and it's not worth it
  • Loading branch information
GabsEdits committed May 2, 2024
1 parent 6ae7c03 commit 4372782
Show file tree
Hide file tree
Showing 10 changed files with 141 additions and 141 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

- Add two new types of links (`external` and `internal`) with different icons at the end of the link

- Migrate Fonts imports to the `fonts.scss` file (rather then the main TypeScript file)
- Migrate basic font configuration to the `fonts.scss` file (rather then the `index.scss` file)

## 1.3.3 (2024-04-27)

Expand Down
21 changes: 10 additions & 11 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the overall
- Focusing on what is best not just for us as individuals, but for the overall
community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or advances of
- The use of sexualized language or imagery, and sexual attention or advances of
any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email address,
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email address,
without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities
Expand Down Expand Up @@ -114,4 +114,3 @@ individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within the
community.

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ Aplós uses [Semantic Versioning](https://semver.org/), so you can understand th

It might be possible that the pre-release versions start as a patch version and end up becoming a minor version (e.g: `2.1.3-1` -> `2.2.0-2`).

### 'Next' Tag

The 'next' tag is an nightly version of Aplós, used to test the next version before it is released. Use the 'next' tag if you want to test the next version of Aplós.

You can install the 'next' tag with the following command:

```bash
npm i aplos@next
```

## Thanks ❤ & Credits️

- [Duckquill](https://daudix.codeberg.page/duckquill), from where I got inspired to create this project (and many ideas are from there)
Expand Down
2 changes: 2 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import "./Layout.vue";
import "./styles/index.scss";
import "non.geist/mono";
import "inter-ui/inter.css";
import "inter-ui/inter-variable.css";
import "@csstools/normalize.css";
import "sass";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aplos",
"version": "1.3.4-5",
"version": "1.3.4-6",
"type": "module",
"description": "A sleek, contemporary, and purposefully designed VitePress theme",
"main": "index.ts",
Expand Down
26 changes: 13 additions & 13 deletions styles/cards.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.custom-block:not(.details) {
margin: 1.25rem 0;
width: max-content;
max-width: 70%;
min-width: 45%;
border-radius: 0.5rem 0.625rem 0.625rem 0.625rem;
padding: 1.8rem 1.25rem;
width: max-content;
min-width: 45%;
max-width: 70%;
line-height: 1.5rem;

p {
Expand All @@ -17,39 +17,39 @@
}

.custom-block-title {
font-size: 1.8rem;
margin-top: 0;
font-weight: 800;
margin-bottom: 0.625rem;
font-weight: 800;
font-size: 1.8rem;
}
}

.danger {
background-color: #ff001936;
border-left: rgb(219, 25, 25) 0.4rem solid;
background-color: #ff001936;

@media (prefers-color-scheme: dark) {
background-color: #39181b;
}
}

.warning {
background-color: #ffcc007e;
border-left: rgb(159, 135, 0) 0.4rem solid;
background-color: #ffcc007e;

@media (prefers-color-scheme: dark) {
background-color: #372a1a;
border-left: rgb(255, 217, 0) 0.4rem solid;
background-color: #372a1a;
}
}

.tip {
background-color: #00ff006a;
border-left: rgb(75, 110, 22) 0.4rem solid;
background-color: #00ff006a;

@media (prefers-color-scheme: dark) {
background-color: #1f3f1f;
border-left: rgb(153, 255, 0) 0.4rem solid;
background-color: #1f3f1f;
}

}
Expand All @@ -60,21 +60,21 @@
}

.details {
margin: 1.25rem 0;
border-radius: 0.625rem;
background-color: var(--color-background-second);
padding: 1rem;
margin: 1.25rem 0;
min-width: 45%;
max-width: max-content;

summary {
margin-top: 0;
cursor: pointer;
margin-top: 0;
font-weight: 700;
}

p {
font-size: 0.9375rem;
margin: 0.625rem 0 0 0;
font-size: 0.9375rem;
}
}
Loading

0 comments on commit 4372782

Please sign in to comment.