Skip to content

Commit

Permalink
Remove vendor-prefixed transitions from .animate class
Browse files Browse the repository at this point in the history
Removed the `-moz-transition`, `-ms-transition`, `-o-transition`, and
`-webkit-transition` properties from the `.animate` class in `base.css`.
This change simplifies the CSS by relying on the standard `transition`
property, which is now widely supported across modern browsers.
  • Loading branch information
EdiWang committed Sep 15, 2024
1 parent ec98076 commit a900f0a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Moonglade.Web/wwwroot/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ footer {

.animate {
-moz-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
Expand Down

0 comments on commit a900f0a

Please sign in to comment.