30 lines
635 B
SCSS
30 lines
635 B
SCSS
|
@import '../variables';
|
||
|
.step-exemple-container{
|
||
|
display: flex;
|
||
|
//width: 100%;
|
||
|
justify-content: center;
|
||
|
/* grid-area: 'ex';
|
||
|
grid-column: 1/2;
|
||
|
grid-row: 4; */
|
||
|
//background-color: chartreuse;
|
||
|
height: min-content;
|
||
|
display: block;
|
||
|
width: min-content;
|
||
|
// margin-left: 10px;
|
||
|
margin: 0 30px;
|
||
|
max-width: 80%;
|
||
|
}
|
||
|
|
||
|
.step-exemple{
|
||
|
background-color: darken($color: $background, $amount: 5);
|
||
|
padding: 10px 50px;
|
||
|
width: max-content;
|
||
|
border-radius: 10px;
|
||
|
padding-left: 10px ;
|
||
|
font-size: 14px;
|
||
|
min-width: 60%;
|
||
|
//max-width: 100%;
|
||
|
& p {
|
||
|
text-align: left;
|
||
|
}
|
||
|
}
|