Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2840 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2840 Rev 2847
Línea 17... Línea 17...
17
  padding: 1rem;
17
  padding: 1rem;
18
}
18
}
Línea 19... Línea 19...
19
 
19
 
20
.feedCommentContainer {
20
.feedCommentContainer {
21
  display: flex;
-
 
22
  flex-direction: column;
21
  display: flex;
23
  justify-content: flex-start;
22
  justify-content: flex-start;
24
  align-items: center;
23
  align-items: center;
25
  margin-top: 1rem;
24
  margin-top: 1rem;
26
  gap: 10px;
25
  gap: 10px;
Línea 52... Línea 51...
52
    transition: 0.2s;
51
    transition: 0.2s;
53
    &:hover {
52
    &:hover {
54
      background-color: $primary-lightblue-hover;
53
      background-color: $primary-lightblue-hover;
55
    }
54
    }
56
  }
55
  }
57
}
56
}
58
 
-
 
59
@include maxwidth("medium") {
-
 
60
  .feedCommentContainer {
-
 
61
    flex-direction: row;
-
 
62
    justify-content: space-between;
-
 
63
    align-items: center;
-
 
64
 
-
 
65
    .submitButton {
-
 
66
      margin: 0;
-
 
67
      margin-left: 0.5rem;
-
 
68
      display: flex;
-
 
69
      justify-content: center;
-
 
70
      align-items: center;
-
 
71
    }
-
 
72
  }
-
 
73
}
-
 
74
57