Commit f516a721 authored by SpinShare's avatar SpinShare

redesigned settings

parent 5915ed73
<template> <template>
<section class="section-settings"> <section class="section-settings">
<header>
<div class="title">{{ $t('settings.header') }}</div>
</header>
<div class="settings">
<div class="settings-box"> <div class="settings-box">
<div class="settings-title">{{ $t('settings.general.header') }}</div> <div class="settings-title">{{ $t('settings.general.header') }}</div>
<div class="settings-item"> <div class="settings-item">
...@@ -48,6 +52,7 @@ ...@@ -48,6 +52,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</section> </section>
</template> </template>
...@@ -119,24 +124,36 @@ ...@@ -119,24 +124,36 @@
<style scoped lang="less"> <style scoped lang="less">
.section-settings { .section-settings {
& header {
background: rgba(0,0,0,0.3);
padding: 50px; padding: 50px;
display: flex; padding-bottom: 25px;
flex-direction: column;
align-items: center;
& .settings-title { & .title {
font-size: 14px; font-size: 32px;
letter-spacing: 0.25em; letter-spacing: 0.05em;
font-weight: bold;
text-transform: uppercase; text-transform: uppercase;
font-family: 'Oswald', sans-serif;
} }
}
& .settings {
padding: 25px 50px;
& .settings-box { & .settings-box {
width: 600px;
padding: 25px;
background: rgba(255,255,255,0.1); background: rgba(255,255,255,0.1);
max-width: 650px;
padding: 25px;
border-radius: 6px; border-radius: 6px;
margin-bottom: 25px; margin-bottom: 25px;
& .settings-title {
font-size: 14px;
letter-spacing: 0.25em;
font-weight: bold;
text-transform: uppercase;
}
& .settings-item { & .settings-item {
display: grid; display: grid;
grid-template-columns: 170px 1fr; grid-template-columns: 170px 1fr;
...@@ -201,4 +218,5 @@ ...@@ -201,4 +218,5 @@
} }
} }
} }
}
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment