@nuvoui/core 0.3.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/dist/main.css +1 -1
- package/package.json +5 -3
- package/src/logo.png +0 -0
- package/src/logo.svg +12 -0
- package/src/styles/base/_base.scss +23 -5
- package/src/styles/base/_reset.scss +18 -4
- package/src/styles/components/_button.scss +96 -82
- package/src/styles/components/_checkbox.scss +0 -23
- package/src/styles/components/_form.scss +62 -24
- package/src/styles/components/_hamburger.scss +72 -0
- package/src/styles/components/_navbar.scss +98 -86
- package/src/styles/index.scss +8 -6
- package/src/styles/layouts/_container.scss +1 -0
- package/src/styles/layouts/_flex.scss +67 -51
- package/src/styles/layouts/_grid.scss +6 -8
- package/src/styles/themes/_theme.scss +1 -1
- package/src/styles/utilities/_animations.scss +13 -68
- package/src/styles/utilities/_borders.scss +36 -0
- package/src/styles/utilities/_colors.scss +23 -31
- package/src/styles/utilities/_display.scss +39 -0
- package/src/styles/utilities/_media-queries.scss +147 -0
- package/src/styles/utilities/_opacity.scss +20 -0
- package/src/styles/utilities/_position.scss +49 -40
- package/src/styles/utilities/_shadows.scss +4 -5
- package/src/styles/utilities/_sizing.scss +73 -0
- package/src/styles/utilities/_spacing.scss +57 -52
- package/src/styles/utilities/_tooltips.scss +20 -33
- package/src/styles/utilities/_typography.scss +1 -0
- package/src/styles/utilities/_variables.scss +30 -23
- package/dist/index.css +0 -1
- package/dist/index.css.map +0 -1
- package/src/styles/_global.scss +0 -3
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# NuvoUI
|
|
2
2
|
|
|
3
|
+
[](https://discord.gg/nWGsbQKE)
|
|
4
|
+
|
|
5
|
+
|
|
3
6
|
NuvoUI isn’t your next shiny, over-engineered UI library. It’s raw, lightweight, and built for one thing: delivering responsive, clean designs fast. If you’re tired of bloated frameworks slowing you down, welcome to NuvoUI.
|
|
4
7
|
|
|
5
8
|
---
|
|
@@ -20,7 +23,7 @@ when you can have, this
|
|
|
20
23
|
<button class="btn lg primary pill outline py-40" >...
|
|
21
24
|
```
|
|
22
25
|
|
|
23
|
-
But wait, there is more... lets make it fully
|
|
26
|
+
But wait, there is more... lets make it fully responsive
|
|
24
27
|
```html
|
|
25
28
|
<button class="btn lg primary pill outline
|
|
26
29
|
py-40
|
|
@@ -28,7 +31,7 @@ But wait, there is more... lets make it fully responsei
|
|
|
28
31
|
py-80@lg
|
|
29
32
|
outline" >...
|
|
30
33
|
```
|
|
31
|
-
This will
|
|
34
|
+
This will be
|
|
32
35
|
|
|
33
36
|
1. Use `padding-left: 40px;` and `padding-right: 40px;` as base
|
|
34
37
|
2. Use `padding-left: 20px;` and `padding-right: 20px;` @ small screen
|
|
@@ -68,7 +71,7 @@ Another example
|
|
|
68
71
|
img:nth-child(1) {
|
|
69
72
|
@include NuvoUI.mx-auto;
|
|
70
73
|
@include NuvoUI.my(40);
|
|
71
|
-
@include NuvoUI.animate-
|
|
74
|
+
@include NuvoUI.animate-bounce((
|
|
72
75
|
horizontal: 3%,
|
|
73
76
|
duration: 25s,
|
|
74
77
|
));
|