# @s.a.g.a/reset-css

A CSS reset library for building static websites without UI frameworks.

This is my personal CSS reset library, designed for use when writing CSS without UI frameworks to create static websites.

## Installation

```bash
npm install @s.a.g.a/reset-css
```

**Windows PowerShell:**
```powershell
npm install "@s.a.g.a/reset-css"
```

## Usage

### Using with CSS/SCSS

**With @import:**
```css
@import "@s.a.g.a/reset-css";

/* Write your styles here */
.your-styles {
  /* ... */
}
```

**With Dart Sass (@use):**
```scss
@use "@s.a.g.a/reset-css";

/* Write your styles here */
.your-styles {
  /* ... */
}
```

### Using with JavaScript/TypeScript

```javascript
import "@s.a.g.a/reset-css";
```

## Contributing

Bug reports and feature requests are welcome! Please feel free to open an issue on [Issues](https://github.com/saga-web-engineer/saga-reset-css/issues).

## License

MIT License - See [LICENSE](LICENSE) file for details.

## Author

**saga-web-engineer**
- GitHub: [@saga-web-engineer](https://github.com/saga-web-engineer)

---

Made with ❤️ for better web development experience.
