Skip to content

Commit

Permalink
Remove unused references to minimize button
Browse files Browse the repository at this point in the history
  • Loading branch information
lynkos committed Jan 23, 2025
1 parent 49ff2b5 commit 18496d1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
11 changes: 0 additions & 11 deletions assets/stylesheets/sass/_mixins.sass
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,6 @@
border: 1px solid rgba(255, 255, 255, 0.25)
outline: 1px solid rgba(0, 0, 0, 0.75)

// FIXME Minimize button
&.minimize
// transform: translateY(82%) translateX(0%) scale(0.75)
// opacity: 1
// //top: 125%
// transition: all 0.25s
// &:hover
// top: -4rem
// transition: all 0.25s
@mixin buttons($button-dim: vars.$window-icons-dim)
display: -webkit-box
display: -ms-flexbox
Expand Down
1 change: 0 additions & 1 deletion src/components/windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ $(document).ready(function() {
function maximizeWindow(maximize, win, width, height) {
$(maximize).on("click", function() {
$(win).toggleClass("maximize");
if ($(win).hasClass("minimize")) $(win).removeClass("minimize");
if ($(win).hasClass("maximize")) {
$("footer").hide();
$(win).css("width", "100vw");
Expand Down

0 comments on commit 18496d1

Please sign in to comment.