Skip to content
Snippets Groups Projects
Header.scss 482 B
Newer Older
.header {
  display: flex;
  height: 10vh;
  width: 100%;
  background-color: var(--main);
  color: white;
  flex-direction: row;
  align-items: center;
}

.header-content {
  display: flex;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

.header-title {
  font-size: 3rem;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}