Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- $steam: #DDDDDD;
-
- .CommonButton {
-
- display: inline-flex;
- align-items: center;
- justify-content: center;
- position: relative;
-
- span {
- font-weight: 600;
- color: white;
- }
-
- &:disabled {
- opacity: 0.5;
- pointer-events: none;
- background-color: $steam;
- border-color: $steam;
- font-weight: 600;
- }
-
- }
-
- .Small {
- height: 3rem;
- min-width: 3rem;
- font-size: 1.2rem;
- border-radius: 1.5rem;
- }
-
- .Medium {
- height: 4rem;
- min-width: 15rem;
- margin-top: 1.2rem;
- margin-bottom: 1.2rem;
- border-radius: 2.5rem;
- span {
- font-size: 1.2rem;
- font-weight: 600;
- }
- }
-
- .Large {
- height: 4rem;
- min-width: 35rem;
- font-size: 1.6rem;
- border-radius: 2.5rem;
- margin: 2rem 2rem;
- }
-
- .Primary {
- background-color: var(--primary-button-color);
- color: white;
- border-color: var(--primary-button-color);
-
- }
-
- .Secondary {
- background-color: transparent;
- border-color: var(--primary-button-color);
- color: var(--primary-button-color);
-
- }
|