2018-11-05 14:44:19 +05:30
|
|
|
@white: rgb(255, 255, 255, 1);
|
|
|
|
|
@version-text-color: rgb(47, 47, 47, 1);
|
|
|
|
|
@copyright-text-color: rgb(127, 127, 127, 1);
|
|
|
|
|
@font-family: sans-serif;
|
|
|
|
|
@text-padding: 10px;
|
|
|
|
|
|
2018-11-16 14:08:38 +05:30
|
|
|
.AboutApp {
|
|
|
|
|
text-align: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding-top: 20px;
|
2018-11-05 14:44:19 +05:30
|
|
|
|
2018-11-16 14:08:38 +05:30
|
|
|
&-name {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
|
padding: @text-padding;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
2018-11-05 14:44:19 +05:30
|
|
|
|
2018-11-16 14:08:38 +05:30
|
|
|
&-versionText {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
color: @version-text-color;
|
|
|
|
|
}
|
2018-11-05 14:44:19 +05:30
|
|
|
|
2018-11-16 14:08:38 +05:30
|
|
|
&-copyrightText {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: @text-padding;
|
|
|
|
|
font-size: 0.6em;
|
|
|
|
|
color: @copyright-text-color;
|
|
|
|
|
}
|
2018-11-05 14:44:19 +05:30
|
|
|
|
2018-11-16 14:08:38 +05:30
|
|
|
&-logo {
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
2018-11-05 14:44:19 +05:30
|
|
|
}
|
|
|
|
|
|