Skip to content

Commit

Permalink
btn light and dark fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hardik-sagacity committed Nov 11, 2023
1 parent d458ee0 commit 0617916
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://i.ibb.co/zhzg9v3/M.png" alt="MinimaCSS Logo" style="height: 100px; width:100px;"/>
<img src="https://i.ibb.co/BBw7NLd/M-2.png" alt="MinimaCSS Logo" style="height: 100px; width:100px;"/>

# MinimaCSS ✨

Expand Down
18 changes: 9 additions & 9 deletions dist/minimacss.css

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

2 changes: 1 addition & 1 deletion dist/minimacss.min.css

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -912,11 +912,11 @@ <h2>Alerts</h2>
error
</span><!-- Replace with your icon -->
<div class="alert-body">
<div class="alert-body-title">There were 2 errors with your submission</div>
<div class="alert-body-title">There were 2 errors with your form submission</div>
<div class="alert-body-description">
<ul role="list">
<li>Your password must be at least 8 characters</li>
<li>Your password must include at least one pro wrestling finishing move</li>
<li>Your password must be at least 12 characters</li>
<li>Your password must include All Letters in capital</li>
</ul>
</div>
</div>
Expand All @@ -927,10 +927,10 @@ <h2>Alerts</h2>
error
</span><!-- Replace with your icon -->
<div class="alert-body">
<div class="alert-body-title">Order completed</div>
<div class="alert-body-title">Order Placed</div>
<div class="alert-body-description">
<p>ipsum dolor sit amet consectetur adipisicing elit. Aliquid pariatur, ipsum similique veniam.</p>
<a href="">Download Receipt</a> <a href="" class="ml-3">Dismiss</a>
<a href="">Download Invoice</a> <a href="" class="ml-3">Dismiss</a>
</div>
</div>
</div>
Expand All @@ -941,8 +941,8 @@ <h2>Alerts</h2>
<div class="alert-body">
<div class="alert-body-title">New Update Received</div>
<div class="alert-body-description">
<p>A new software update is available. See what’s new in version 2.0.4.</p>
<a href="">Get Details →</a>
<p>A new software update is available. See what’s new!</p>
<a href="">Get Details →</a>
</div>
</div>
<button class="alert-close">&times;</button>
Expand All @@ -954,8 +954,8 @@ <h2>Alerts</h2>
<div class="alert-body">
<div class="alert-body-title">New Update Received</div>
<div class="alert-body-description">
<p>A new software update is available. See what’s new in version 2.0.4.</p>
<a href="">Get Details →</a>
<p>A new software update is available. See what’s new!</p>
<a href="">Get Details →</a>
</div>
</div>
<button class="alert-close">&times;</button>
Expand Down
6 changes: 3 additions & 3 deletions src/themes/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@
--button-warning-text-color: #{$white};
--button-warning-focus-ring-color: #{hex-to-rgba($orange-400,0.4)};

--button-light-color: #{$gray-100};
--button-light-hover-color: #{$gray-200};
--button-light-color: #{$gray-50};
--button-light-hover-color: #{$gray-100};
--button-light-text-color: #{$gray-900};
--button-light-focus-ring-color: #{hex-to-rgba($gray-300,0.4)};
--button-light-focus-ring-color: #{hex-to-rgba($gray-200, 0.4)};

--button-dark-color: #{$gray-600};
--button-dark-hover-color: #{$gray-500};
Expand Down
6 changes: 3 additions & 3 deletions src/themes/_light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@
--button-warning-text-color: #{$white};
--button-warning-focus-ring-color: #{hex-to-rgba($orange-500, 0.25)};

--button-light-color: #{$gray-100};
--button-light-hover-color: #{$gray-200};
--button-light-color: #{$gray-50};
--button-light-hover-color: #{$gray-100};
--button-light-text-color: #{$gray-900};
--button-light-focus-ring-color: #{hex-to-rgba($gray-300, 0.25)};
--button-light-focus-ring-color: #{hex-to-rgba($gray-200, 0.25)};

--button-dark-color: #{$gray-600};
--button-dark-hover-color: #{$gray-500};
Expand Down

0 comments on commit 0617916

Please sign in to comment.