aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/settings/info-tab/index.scss
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-09-12 08:32:37 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-09-20 07:37:23 +0800
commitb579ee9619d5d775484f382b800c3426311da19d (patch)
tree33c4e1293178d1c6cdb4bdd74ee7732d516d072a /ui/app/components/pages/settings/info-tab/index.scss
parent3c3fed46cb032f59cd30daae04c17475196cd5c9 (diff)
downloadtangerine-wallet-browser-b579ee9619d5d775484f382b800c3426311da19d.tar.gz
tangerine-wallet-browser-b579ee9619d5d775484f382b800c3426311da19d.tar.zst
tangerine-wallet-browser-b579ee9619d5d775484f382b800c3426311da19d.zip
Refactor settings page to use JSX and follow component file folder structure
Diffstat (limited to 'ui/app/components/pages/settings/info-tab/index.scss')
-rw-r--r--ui/app/components/pages/settings/info-tab/index.scss60
1 files changed, 60 insertions, 0 deletions
diff --git a/ui/app/components/pages/settings/info-tab/index.scss b/ui/app/components/pages/settings/info-tab/index.scss
new file mode 100644
index 000000000..00342dc5f
--- /dev/null
+++ b/ui/app/components/pages/settings/info-tab/index.scss
@@ -0,0 +1,60 @@
+.info-tab {
+ &__logo-wrapper {
+ height: 80px;
+ margin-bottom: 20px;
+ }
+
+ &__logo {
+ max-height: 100%;
+ max-width: 100%;
+ }
+
+ &__item {
+ padding: 10px 0;
+ }
+
+ &__link-header {
+ padding-bottom: 15px;
+
+ @media screen and (max-width: 575px) {
+ padding-bottom: 5px;
+ }
+ }
+
+ &__link-item {
+ padding: 15px 0;
+
+ @media screen and (max-width: 575px) {
+ padding: 5px 0;
+ }
+ }
+
+ &__link-text {
+ color: $curious-blue;
+ }
+
+ &__version-header {
+ text-transform: capitalize;
+ }
+
+ &__version-number {
+ padding-top: 5px;
+ font-size: 13px;
+ color: $dusty-gray;
+ }
+
+ &__separator {
+ margin: 15px 0;
+ width: 80px;
+ border-color: $alto;
+ border: none;
+ height: 1px;
+ background-color: $alto;
+ color: $alto;
+ }
+
+ &__about {
+ color: $dusty-gray;
+ margin-bottom: 15px;
+ }
+}