Tweak UI
This commit is contained in:
parent
faf2c007aa
commit
c0c64a2d5d
10 changed files with 46 additions and 13 deletions
|
@ -24,7 +24,7 @@ export default defineComponent({
|
|||
--formXPadding: 32px;
|
||||
--formYPadding: 32px;
|
||||
|
||||
line-height: 1.4em;
|
||||
line-height: 1.3em;
|
||||
background: var(--bg);
|
||||
padding: var(--formYPadding) var(--formXPadding);
|
||||
|
||||
|
|
|
@ -215,7 +215,7 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
> .input {
|
||||
$height: 52px;
|
||||
$height: 48px;
|
||||
position: relative;
|
||||
|
||||
> input {
|
||||
|
|
|
@ -69,8 +69,8 @@ export default defineComponent({
|
|||
display: inline-block;
|
||||
vertical-align: bottom;
|
||||
position: relative;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 8px;
|
||||
background: none;
|
||||
border: 2px solid var(--inputBorder);
|
||||
|
|
|
@ -69,7 +69,7 @@ export default defineComponent({
|
|||
position: relative;
|
||||
|
||||
> .main {
|
||||
padding: 24px 16px;
|
||||
padding: 22px 16px;
|
||||
|
||||
> input {
|
||||
display: block;
|
||||
|
|
|
@ -97,7 +97,7 @@ export default defineComponent({
|
|||
font: inherit;
|
||||
font-weight: normal;
|
||||
font-size: 1em;
|
||||
height: 52px;
|
||||
height: 48px;
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
|
|
|
@ -57,7 +57,7 @@ export default defineComponent({
|
|||
> .main {
|
||||
position: relative;
|
||||
display: flex;
|
||||
padding: 16px;
|
||||
padding: 14px 16px;
|
||||
cursor: pointer;
|
||||
|
||||
> * {
|
||||
|
|
|
@ -30,6 +30,11 @@
|
|||
<MkA class="item" active-class="active" to="/settings" :behavior="settingsWindowed ? 'modalWindow' : null">
|
||||
<Fa :icon="faCog" fixed-width/><span class="text">{{ $ts.settings }}</span>
|
||||
</MkA>
|
||||
<div class="divider"></div>
|
||||
<div class="foo">
|
||||
<MkEmoji :normal="true" :no-style="true" emoji="🍮"/>
|
||||
</div>
|
||||
<!--<MisskeyLogo class="misskey"/>-->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -44,10 +49,12 @@ import { sidebarDef } from '@client/sidebar';
|
|||
import { getAccounts, addAccount, login } from '@client/account';
|
||||
import MkButton from '@client/components/ui/button.vue';
|
||||
import { StickySidebar } from '@client/scripts/sticky-sidebar';
|
||||
import MisskeyLogo from '@/../assets/client/misskey.svg';
|
||||
|
||||
export default defineComponent({
|
||||
components: {
|
||||
MkButton
|
||||
MkButton,
|
||||
MisskeyLogo,
|
||||
},
|
||||
|
||||
data() {
|
||||
|
@ -315,6 +322,16 @@ export default defineComponent({
|
|||
}
|
||||
}
|
||||
|
||||
> .misskey {
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
> .foo {
|
||||
text-align: center;
|
||||
padding: 8px 0 16px 0;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
> .item {
|
||||
position: relative;
|
||||
display: block;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue