Using scss to set height equals width

I use flex layout like this. I want to set the height and width to be the same.

scss

clipboard.png

Mar.05,2021

landlord, I recommend you to use vw layout

.foot {
  margin-top: 1rem;
  .foot-menu {
      display: flex;
      .menu-item {
         width: 25vw;
         height: 25vw;
         @extend: .box-shadow;
      }
     
      .menu-item2 {
         width: 50vw;
         height: 50vw;
         @extend: .box-shadow;
      }   
  }
}

the division according to the demand is better than the calculation of the subject himself.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3c198-2c2dc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3c198-2c2dc.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?