Skip to content

Commit

Permalink
Merge pull request #40 from etrusci-org/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
etrusci-org authored Mar 17, 2024
2 parents 8a2a809 + 3394d78 commit ccd906a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CSS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ Here's a list of the most commonly used properties for your Browser-Source's CSS
- [opacity](https://developer.mozilla.org/docs/Web/CSS/opacity): Set element opacity.
- [padding](https://developer.mozilla.org/docs/Web/CSS/padding): Set padding area.
- [text-align](https://developer.mozilla.org/docs/Web/CSS/text-align): Set horizontal alignment.

- [text-shadow](https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow): Add shadows to text.
- [::before](https://developer.mozilla.org/en-US/docs/Web/CSS/::before): Create an element before another element.
- [content](https://developer.mozilla.org/en-US/docs/Web/CSS/content): Replace content with a value.
---

## Example
Expand All @@ -36,9 +38,10 @@ Here's a fictional example that uses all the properties from the list above.
opacity: 0.8;
padding: 20px;
text-align: center;
text-shadow: #ff0000 20px 20px 5px;
}

.mod::before {
.mod::before {
content: 'hello cruel world! ';
}
```
Expand Down
2 changes: 1 addition & 1 deletion app/lib/randomquotetyper.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const RandomQuoteTyper = {


stop() {
if (!this.typerID || !this.target) return
if (!this.typerID) return

clearInterval(this.typerID)
this.typerID = null
Expand Down

0 comments on commit ccd906a

Please sign in to comment.