stylist / frontend / src / components / ProfileNavbar / ProfileNavbar.module.scss
ProfileNavbar.module.scss
Raw
//global imports
@import '../../styles/global.colors.scss';
@import '../../styles/global.fonts.scss';
@import '../../styles/mixins';

.navbar {
  display: flex;
  flex-direction: row;
  background-color: inherit;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  margin-inline: 24px;
}

@include mobile() {
  .navbar {
    width: 48%;
    display: flex;
    flex-direction: row;
    background-color: inherit;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-inline: 24px;
  }
}