Skip to content

Commit

Permalink
trigger push
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Jan 22, 2025
1 parent 8b958ca commit 58ff20f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/examples/simple-blog/blog/class-naming-strategies.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Designers should have a strong handle on core CSS concepts like the box model, s

> When designing for the web, keeping CSS in mind from the start prevents frustration down the road. For example, **typography and color schemes are heavily influenced by CSS** and layered graphical elements must be broken down into achievable HTML components.
``` js.blue
``` js .blue
function toggleAttr(el, name, flag) {
flag ? el.setAttribute(name, 1) : el.removeAttribute(name)
}
Expand Down Expand Up @@ -45,7 +45,7 @@ Overall, CSS is a uniquely visual language, with a direct impact on user-facing
In conclusion, thoughtfully naming CSS classes, IDs, and other selectors is an important part of keeping stylesheets scalable and maintainable. Use semantic, descriptive names that communicate what a selector is styling. Implement methodical naming conventions and structures for better organization.


``` .pink
```css .pink
.pink {
background-image: linear-gradient(#e879f9, #ec4899);
padding: 3em 0 0 3em;
Expand Down
1 change: 0 additions & 1 deletion packages/nuejs.org/docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,4 +422,3 @@ nue build --production
This command quickly compiles your site, similar to Rust and Go-based generators like Hugo. The production files will be in the `.dist/prod` folder, ready to deploy on a CDN like Cloudflare, CloudFront, or Fastly.

In the future, the `nue push` command will streamline deployment further, but for now, you'll need to handle this step with your preferred CDN provider.

0 comments on commit 58ff20f

Please sign in to comment.