Commit f516a721 authored by SpinShare's avatar SpinShare

redesigned settings

parent 5915ed73
<template>
<section class="section-settings">
<header>
<div class="title">{{ $t('settings.header') }}</div>
</header>
<div class="settings">
<div class="settings-box">
<div class="settings-title">{{ $t('settings.general.header') }}</div>
<div class="settings-item">
......@@ -48,6 +52,7 @@
</div>
</div>
</div>
</div>
</section>
</template>
......@@ -119,24 +124,36 @@
<style scoped lang="less">
.section-settings {
& header {
background: rgba(0,0,0,0.3);
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 25px;
& .settings-title {
font-size: 14px;
letter-spacing: 0.25em;
font-weight: bold;
& .title {
font-size: 32px;
letter-spacing: 0.05em;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
}
}
& .settings {
padding: 25px 50px;
& .settings-box {
width: 600px;
padding: 25px;
background: rgba(255,255,255,0.1);
max-width: 650px;
padding: 25px;
border-radius: 6px;
margin-bottom: 25px;
& .settings-title {
font-size: 14px;
letter-spacing: 0.25em;
font-weight: bold;
text-transform: uppercase;
}
& .settings-item {
display: grid;
grid-template-columns: 170px 1fr;
......@@ -201,4 +218,5 @@
}
}
}
}
</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