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

.container {
  @include SemiBoldDark16Mixin;
  position: relative;
  color: $dark-gray-text-color;
  background-color: inherit;
  color: inherit;
  height: 32px;
  padding-inline: 24px;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  &::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 0.7px;
    background-color: $light-gray-text-color-opacity;
  }
  &:active {
    background-color: $light-gray-text-color-opacity;
  }
}