Page.module.scss 608 Bytes
.layout {
  height: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content {
  background: #fff;
  padding: 25px 50px;
}

.logo {
  width: 120px;
  height: 31px;
  margin: 16px 24px 16px 0;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.user {
  display: flex;
  align-items: center;
  color: white;

  svg {
    width: 28px;
    height: 28px;
  }

  &:hover,
  &:active,
  &:focus {
    color: rgba(255, 255, 255, 0.65);
  }
}

.footer {
  text-align: center;
}