Skip to content

Commit

Permalink
Fix/Design
Browse files Browse the repository at this point in the history
* fix design

* renamed dlsl -> solarity

---------

Co-authored-by: Yehor Podporinov <[email protected]>
  • Loading branch information
yehor-podporinov and Yehor Podporinov committed Sep 11, 2023
1 parent f9e39e5 commit 75db0a4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VITE_ENVIRONMENT=development
VITE_PORT=8095
VITE_APP_NAME='DLSL'
VITE_APP_NAME='Solarity'
VITE_APP_COMPANY_URL='https://distributedlab.com'
VITE_APP_DOCUMENTATION_URL='https://docs.google.com'
VITE_APP_GITHUB_URL='https://github.com/dl-solarity/frontend'
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 DLSL
Copyright (c) 2023 Solarity

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions components/AppNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@ onUnmounted(() => {
background: transparent;
border-bottom: var(--border-primary-main);
transition: var(--field-transition-duration) ease;
transition-property: background-color, box-shadow;
transition-property: background-color, border-color;
border-bottom: toRem(1) solid transparent;
&--dark {
background: var(--background-primary-main);
box-shadow: 0 toRem(2) toRem(4) var(--background-primary-dark);
border-color: var(--background-primary-light);
}
}
Expand Down
6 changes: 0 additions & 6 deletions forms/AbiEncodeForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
/>
</div>
<div class="abi-encode-form__output">
<h3>{{ $t('abi-encode-form.output-title') }}</h3>
<input-field
:model-value="funcSignature"
:label="$t('abi-encode-form.func-signature-label')"
Expand Down Expand Up @@ -239,11 +238,6 @@ abiEncoding.value = encodeAbi([], [])
gap: toRem(20);
}
.abi-encode-form__input {
padding-bottom: toRem(40);
border-bottom: toRem(1) solid var(--border-primary-main);
}
.abi-encode-form__args_wrp {
display: grid;
grid-gap: toRem(16);
Expand Down
8 changes: 4 additions & 4 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const lifecycle = process.env.npm_lifecycle_event
export default defineNuxtConfig({
app: {
head: {
title: 'DLSL',
title: 'Solarity',
meta: [
{ charset: 'utf-8' },
{ 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' },
Expand All @@ -27,9 +27,9 @@ export default defineNuxtConfig({
content:
'width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0',
},
{ hid: 'description', name: 'description', content: 'DLSL' },
{ property: 'og:title', content: 'DLSL' },
{ property: 'og:description', content: 'DLSL' },
{ hid: 'description', name: 'description', content: 'Solarity' },
{ property: 'og:title', content: 'Solarity' },
{ property: 'og:description', content: 'Solarity' },
{ property: 'og:image', content: '/branding/logo.png' },
{ property: 'og:locale', content: 'en_GB' },
{ property: 'og:type', content: 'website' },
Expand Down
3 changes: 1 addition & 2 deletions plugins/localization/resources/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
"arg-subtype-label": "Value",
"arg-subtype-placeholder--tuple": "Enter type, e.g. tuple(address, tuple(uint256))",
"add-arg-btn": "Add argument",
"output-title": "Encoded data",
"abi-encoding-label": "Abi encoding",
"abi-encoding-placeholder": "Abi encoding",
"func-signature-label": "Function signature",
Expand Down Expand Up @@ -191,7 +190,7 @@
"failed-to-decode-abi": "Failed to decode values with given types"
},
"app-logo": {
"title": "DLSL"
"title": "Solarity"
},
"app-footer": {
"link-text": "Link"
Expand Down

0 comments on commit 75db0a4

Please sign in to comment.