Skip to content

Commit afafecb

Browse files
v3.0.4 b262
1 parent 71b64ce commit afafecb

File tree

7 files changed

+42
-42
lines changed

7 files changed

+42
-42
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
### Install From CDN
1515
If you want to quickly add the Punica CSS to your project, you can use the JsDelivr CDN;
1616
```html
17-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codeforms/Punica-CSS-Framework@latest/dist/punica.min.css" crossorigin="anonymous">
17+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codeforms/Punica-CSS-Framework@3.x.x/dist/punica.min.css" crossorigin="anonymous">
1818
```
1919
for Default Dark Theme;
2020
```html
21-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codeforms/Punica-CSS-Framework@latest/dist/punica-dark.min.css" crossorigin="anonymous">
21+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codeforms/Punica-CSS-Framework@3.x.x/dist/punica-dark.min.css" crossorigin="anonymous">
2222
```
2323
### HTML Markup
2424
For your default setup, add the Punica CSS file to the <head> element of your HTML5 document.

dist/punica-dark.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/punica.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Core/Global/Getters.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135

136136
///
137137
/// Get variable of a specific utility
138-
/// from the Modules/Utilities/index.scss file.
138+
/// from the utilities.scss file.
139139
///
140140
/// @param {String} $node
141141
/// @param {String|null} $key

src/Modules/Components/Tooltip/Tooltip.scss

+32-32
Original file line numberDiff line numberDiff line change
@@ -53,47 +53,47 @@
5353
/// DIRECTIONS
5454
///
5555
@if features('components', 'tooltip', 'directions') {
56-
&.#{class('tooltip', 'left')},
57-
&.#{class('tooltip', 'right')},
58-
&.#{class('tooltip', 'top')} {
59-
&>.#{class('tooltip', 'text')} {
60-
top: auto;
61-
&::after {
62-
bottom: auto;
63-
}
64-
}
65-
}
66-
&.#{class('tooltip', 'right')} {
67-
&>.#{class('tooltip', 'text')} {
68-
left: 110%;
69-
&::after {
56+
&.#{class('tooltip', 'left')},
57+
&.#{class('tooltip', 'right')},
58+
&.#{class('tooltip', 'top')} {
59+
&>.#{class('tooltip', 'text')} {
60+
top: auto;
61+
&::after {
62+
bottom: auto;
63+
}
64+
}
65+
}
66+
&.#{class('tooltip', 'right')} {
67+
&>.#{class('tooltip', 'text')} {
68+
left: 110%;
69+
&::after {
7070
right : 100%;
7171
left : auto;
7272
border-color: transparent components('tooltip', 'background-color') transparent transparent;
73-
}
74-
}
75-
}
76-
&.#{class('tooltip', 'left')} {
77-
&>.#{class('tooltip', 'text')} {
78-
right: 110%;
79-
&::after {
73+
}
74+
}
75+
}
76+
&.#{class('tooltip', 'left')} {
77+
&>.#{class('tooltip', 'text')} {
78+
right: 110%;
79+
&::after {
8080
left : 100%;
8181
right : auto;
8282
margin : auto -5px auto auto ;
8383
border-color: transparent transparent transparent components('tooltip', 'background-color');
84-
}
85-
}
86-
}
87-
&.#{class('tooltip', 'top')} {
88-
&>.#{class('tooltip', 'text')} {
89-
bottom: 120%;
90-
&::after {
84+
}
85+
}
86+
}
87+
&.#{class('tooltip', 'top')} {
88+
&>.#{class('tooltip', 'text')} {
89+
bottom: 120%;
90+
&::after {
9191
top : 100%;
9292
border-color: components('tooltip', 'background-color') transparent transparent transparent;
93-
}
94-
}
95-
}
96-
}
93+
}
94+
}
95+
}
96+
}
9797
&:hover .#{class('tooltip', 'text')} {
9898
visibility: visible;
9999
opacity : 1;

src/punica.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/*!
2020
* Punica CSS Framework - #{theme('name')}
21-
* v3.0.3 Beta
21+
* v3.0.3
2222
*
2323
* @link http://github.com/codeforms/Punica-CSS-Framework
2424
*

src/themes.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
$themes: (
1414
//
15-
// 01. Default Theme (beta)
15+
// 01. Default Theme
1616
//
1717
default: (
1818
'name' : 'Default Theme',
@@ -42,7 +42,7 @@ $themes: (
4242
'shadow': 0 .25em .5em 0 rgba(0, 0, 0, 0.14)
4343
),
4444
//
45-
// 02. Dark Theme (beta)
45+
// 02. Dark Theme
4646
//
4747
dark: (
4848
'name' : 'Dark Theme',

0 commit comments

Comments
 (0)