Skip to content

Commit

Permalink
🚀 v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
phucbm committed Jul 8, 2022
1 parent 162f36c commit 7a249c1
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 6 deletions.
84 changes: 83 additions & 1 deletion dist/atomic.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Atomic CSS 1.0.1
* Atomic CSS 1.0.2
* https://github.com/viivue/atomic-css
*/
/**
Expand Down Expand Up @@ -722,3 +722,85 @@
.ud-none {
user-drag: none;
}

/**
* Overflow
* https://stackoverflow.design/product/base/overflow/
*/
/* overflow */
.overflow-visible {
overflow: visible;
}

.overflow-hidden {
overflow: hidden;
}

.overflow-scroll {
overflow: scroll;
}

.overflow-auto {
overflow: auto;
}

/* overflow-x */
.overflow-x-hidden {
overflow-x: hidden;
}

.overflow-x-scroll {
overflow-x: scroll;
}

.overflow-x-auto {
overflow-x: auto;
}

/* overflow-y */
.overflow-y-hidden {
overflow-y: hidden;
}

.overflow-y-scroll {
overflow-y: scroll;
}

.overflow-y-auto {
overflow-y: auto;
}

/**
* Border radius
* https://stackoverflow.design/product/base/border-radius/
*/
/* bar-pill */
.bar-pill {
border-radius: 1000px;
}

/* bar-circle */
.bar-circle {
border-radius: 100%;
}

/* border-radius */
.bar-0 {
border-radius: 0;
}

.bar-3px {
border-radius: 3px;
}

.bar-5px {
border-radius: 5px;
}

.bar-10px {
border-radius: 10px;
}

.bar-15px {
border-radius: 15px;
}
4 changes: 2 additions & 2 deletions dist/atomic.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atomic-css",
"version": "1.0.0",
"version": "1.0.2",
"description": "⚛️ Atomic CSS Framework for everyone.",
"scripts": {
"sass": "sass scss:css --no-source-map",
Expand Down
4 changes: 3 additions & 1 deletion scss/_build.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@
@import "flex";
@import "transitions";
@import "object-fit";
@import "interactivity";
@import "interactivity";
@import "overflow";
@import "border-radius";
2 changes: 1 addition & 1 deletion scss/_defs.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Definitions
/// DO NOT EDIT!

$version: "1.0.1";
$version: "1.0.2";
$info: ();

// axes
Expand Down

0 comments on commit 7a249c1

Please sign in to comment.