react_components_general #17

Open
dupsogod wants to merge 5 commits from react_components_general into master
2 changed files with 70 additions and 0 deletions
Showing only changes of commit 43101cf65c - Show all commits
+43
View File
@@ -0,0 +1,43 @@
/* ГАВРИЛОВ. ВЫЯСНИТЬ, ГДЕ ИСПОЛЬЗУЮТСЯ */
#root{
padding: 10px;
}
.form-container{
&.form-container--small-size{
width: 30%;
}
&.form-container--medium-size{
width: 50%;
}
&.form-container--left-pos{
margin-left: 10px;
}
&.form-container--mid-pos{
margin: 25px auto;
}
}
.form__field-block{
margin: 15px 0;
}
.btn-block{
margin: 15px 0;
padding: 15px 0;
display: flex;
justify-content: flex-start;
gap: 10px;
}
/* OVERWRITE */
.renButton{
&.renButton--tertiary{
background: #dfdfdf;
}
}
+27
View File
@@ -0,0 +1,27 @@
#page__content-block{
padding: 10px;
}
#page__header-block{
position: sticky;
top: 0;
z-index: 99;
box-shadow: 0px 2px 9px 3px #8f8d8d;
& .header-block__header-container{
display: flex;
justify-content: space-between;
padding: 10px;
background: var(--color_graphite_main);
& .header-container__block{
display: flex;
gap: 10px;
align-items: center;
& .header-container__block__app-name{
color: white;
}
}
}
}