azure state counter

by Jens Kühn

HTML

<div class="wrapper">
  <div class="tasks-count">
    <span class="task-index">3</span>
    <span class="tasks-separator">/</span>
    <span class="total-tasks">3</span>
  </div>
</div>

SCSS

body {
  margin: 0;
}

.wrapper {  
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}
.tasks-count {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    color: rgba(0, 0, 0, 0.55);
    font-size: 10px;
    text-decoration: none;
    overflow: hidden;
    
    .task-index {
      font-size: 16px;
      line-height: 16px;
      color: rgba(0, 90, 158, 1);
      font-weight: 600;
  }
}