30 lines
390 B
SCSS
30 lines
390 B
SCSS
@use "@angular/material" as mat;
|
|
|
|
ul {
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
a {
|
|
padding: 1em;
|
|
border: 0;
|
|
margin: 0;
|
|
font-size: large;
|
|
text-decoration: none;
|
|
|
|
border-radius: 10px;
|
|
|
|
@include mat.button-overrides(
|
|
(
|
|
protected-container-height: 1
|
|
)
|
|
);
|
|
} |