Skip to content

Commit a1aceed

Browse files
committed
Bump version up to 2.0.0-alpha.8
1 parent 96cc31b commit a1aceed

3 files changed

Lines changed: 71 additions & 37 deletions

File tree

dist/point.css

Lines changed: 68 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* @moyu/pointcss
3-
* @version v2.0.0-alpha.7
3+
* @version v2.0.0-alpha.8
44
* @link https://github.com/moyus/pointcss
55
* @author moyu <moyuboy@gmail.com> (https://moyu.io)
66
* @license MIT
@@ -581,34 +581,6 @@ th {
581581

582582
/* ## Grid
583583
---------------------------------*/
584-
.container {
585-
position: relative;
586-
margin-left: auto;
587-
margin-right: auto;
588-
padding-left: 8px;
589-
padding-right: 8px;
590-
width: 100%;
591-
max-width: 100%;
592-
}
593-
594-
@media (min-width: 768px) {
595-
.container {
596-
max-width: 100%;
597-
}
598-
}
599-
600-
@media (min-width: 1000px) {
601-
.container {
602-
max-width: 980px;
603-
}
604-
}
605-
606-
@media (min-width: 1200px) {
607-
.container {
608-
max-width: 1180px;
609-
}
610-
}
611-
612584
.row {
613585
display: flex;
614586
flex-wrap: wrap;
@@ -1073,6 +1045,36 @@ th {
10731045
}
10741046
}
10751047

1048+
/* ## Container
1049+
---------------------------------*/
1050+
.container {
1051+
position: relative;
1052+
margin-left: auto;
1053+
margin-right: auto;
1054+
padding-left: 16px;
1055+
padding-right: 16px;
1056+
width: 100%;
1057+
max-width: 100%;
1058+
}
1059+
1060+
@media (min-width: 768px) {
1061+
.container {
1062+
max-width: 100%;
1063+
}
1064+
}
1065+
1066+
@media (min-width: 1000px) {
1067+
.container {
1068+
max-width: 980px;
1069+
}
1070+
}
1071+
1072+
@media (min-width: 1200px) {
1073+
.container {
1074+
max-width: 1180px;
1075+
}
1076+
}
1077+
10761078
/* ## Level
10771079
---------------------------------*/
10781080
.level {
@@ -2161,7 +2163,7 @@ fieldset[disabled] .btn {
21612163
margin: 8px 0 0 0;
21622164
border-radius: 3px;
21632165
background-color: #ffffff;
2164-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
2166+
box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.1);
21652167
}
21662168

21672169
.dropdown__content > *:first-child {
@@ -2569,6 +2571,38 @@ fieldset[disabled] .btn {
25692571
box-shadow: none !important;
25702572
}
25712573

2574+
.form-range {
2575+
display: block;
2576+
margin: 0;
2577+
min-width: 0;
2578+
width: 100%;
2579+
height: 4px;
2580+
margin-top: 8px;
2581+
margin-bottom: 8px;
2582+
cursor: pointer;
2583+
border-radius: 9999px;
2584+
color: #212121;
2585+
background-color: #dbdbdb;
2586+
-webkit-appearance: none;
2587+
-moz-appearance: none;
2588+
appearance: none;
2589+
}
2590+
2591+
.form-range:focus {
2592+
outline: none;
2593+
color: #636AFF;
2594+
}
2595+
2596+
.form-range::-webkit-slider-thumb {
2597+
width: 16px;
2598+
height: 16px;
2599+
border: 0;
2600+
border-radius: 9999px;
2601+
background-color: currentColor;
2602+
-webkit-appearance: none;
2603+
appearance: none;
2604+
}
2605+
25722606
.form-field {
25732607
text-align: left;
25742608
margin-bottom: 16px;
@@ -2953,7 +2987,7 @@ fieldset[disabled] .btn {
29532987
margin: auto;
29542988
background-color: #ffffff;
29552989
border-radius: 5px;
2956-
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
2990+
box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.2);
29572991
}
29582992

29592993
.modal__header {
@@ -3638,15 +3672,15 @@ body.is-masking {
36383672
}
36393673

36403674
.shadow-sm {
3641-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08) !important;
3675+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
36423676
}
36433677

36443678
.shadow-md {
3645-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
3679+
box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.1) !important;
36463680
}
36473681

36483682
.shadow-lg {
3649-
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
3683+
box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.2) !important;
36503684
}
36513685

36523686
.block {

dist/point.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@moyu/pointcss",
3-
"version": "2.0.0-alpha.7",
3+
"version": "2.0.0-alpha.8",
44
"website": "https://moyus.github.io/pointcss",
55
"homepage": "https://github.com/moyus/pointcss",
66
"author": "moyu <moyuboy@gmail.com> (https://moyu.io)",

0 commit comments

Comments
 (0)