Skip to content

Commit

Permalink
Fix cloudflare minification (#197)
Browse files Browse the repository at this point in the history
* Change color 'black' to hex '#000000'
* Remove spaces from comment section
* Remove double semicolon

Co-authored-by: Alexander Bilz <[email protected]>
  • Loading branch information
AyrtonRicardo and lxndrblz authored May 8, 2021
1 parent b6e1660 commit e6bd017
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

html[data-theme='dark'] {
--bg-color: #010408;
--secondary-bg-color: rgb(56, 56, 56);;
--secondary-bg-color: rgb(56, 56, 56);
--heading-color: #c9d1d9;
--body-color: rgb(169, 169, 179);
--post-color: rgba(0, 0, 0, 0.44);
Expand Down Expand Up @@ -526,7 +526,7 @@ a:active {
.post .post-thumbnail {
width: 100%;
padding-bottom: 1em;
box-shadow: black;
box-shadow: #000000;
border-radius: 0.5em;
overflow: hidden;
transition: box-shadow .3s ease;
Expand Down
4 changes: 2 additions & 2 deletions assets/css/style.rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

html[data-theme='dark'] {
--bg-color: #010408;
--secondary-bg-color: rgb(56, 56, 56);;
--secondary-bg-color: rgb(56, 56, 56);
--heading-color: #c9d1d9;
--body-color: rgb(169, 169, 179);
--post-color: rgba(0, 0, 0, 0.44);
Expand Down Expand Up @@ -525,7 +525,7 @@ a:active {
.post .post-thumbnail {
width: 100%;
padding-bottom: 1em;
box-shadow: black;
box-shadow: #000000;
border-radius: 0.5em;
overflow: hidden;
transition: box-shadow .3s ease;
Expand Down
2 changes: 1 addition & 1 deletion assets/js/medium-zoom.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! medium-zoom 1.0.5 | MIT License | https://github.com/francoischalifour/medium-zoom */
/*!medium-zoom 1.0.5 | MIT License | https://github.com/francoischalifour/medium-zoom*/
(function (global, factory) {
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory() : typeof define === "function" && define.amd ? define(factory) : (global = global || self,
global.mediumZoom = factory());
Expand Down

0 comments on commit e6bd017

Please sign in to comment.