diff --git a/client/src/assets/css/base.css b/client/src/assets/css/base.css index c40c309..20bcde1 100644 --- a/client/src/assets/css/base.css +++ b/client/src/assets/css/base.css @@ -54,3 +54,7 @@ button:focus { ); box-shadow: rgba(235, 248, 255, 0.1) 0px -1px inset; } + +.input-color { + background: rgba(23, 49, 79, 0.6); +} diff --git a/client/src/assets/css/transition.css b/client/src/assets/css/transition.css index 08ada3c..4f2f175 100644 --- a/client/src/assets/css/transition.css +++ b/client/src/assets/css/transition.css @@ -27,8 +27,8 @@ transition-timing-function: cubic-bezier(.55, .085, .68, .53); } -.scale-70 { - transform: scale(.7); +.scale-90 { + transform: scale(.9); } .scale-100 { diff --git a/client/src/components/SVGContainer.vue b/client/src/components/SVGContainer.vue index ff8332f..73406fc 100644 --- a/client/src/components/SVGContainer.vue +++ b/client/src/components/SVGContainer.vue @@ -6,5 +6,6 @@ gold rank-silver + diff --git a/client/src/components/SearchForm.vue b/client/src/components/SearchForm.vue index e48137a..250a380 100644 --- a/client/src/components/SearchForm.vue +++ b/client/src/components/SearchForm.vue @@ -5,18 +5,18 @@ -
+
{{ selectedRegion }} @@ -29,21 +29,22 @@
-
- - + + + + +
@@ -110,32 +110,33 @@ export default { computed: { btnClasses() { return { - 'w-12': this.size === 'small', - 'w-20': this.size === 'xl' - } - }, - elementClasses() { - return { - 'border-2': this.size === 'small', - 'border-4': this.size === 'xl' + 'w-8 mr-3': this.size === 'small', + 'w-12': this.size === 'xl' } }, formClasses() { return { - 'max-w-lg': this.size === 'small', + 'max-w-md': this.size === 'small', } }, inputClasses() { return { - 'py-2': this.size === 'small', - 'py-4': this.size === 'xl' + 'py-2 px-1': this.size === 'small', + 'py-4 px-2': this.size === 'xl', + 'input-color': !this.dropdown, + 'bg-blue-1000': this.dropdown + } + }, + dropdownClasses() { + return { + 'offsetDropDown': this.size === 'small', + 'offsetDropDownXl': this.size === 'xl' } } }, methods: { classRegions(index) { return { - 'rounded-t': index === 0, 'rounded-b': index === this.regions.length - 1 } }, @@ -151,22 +152,16 @@ export default { diff --git a/client/src/components/Summoner/RecentActivity.vue b/client/src/components/Summoner/RecentActivity.vue index 07a4c22..bdabed0 100644 --- a/client/src/components/Summoner/RecentActivity.vue +++ b/client/src/components/Summoner/RecentActivity.vue @@ -1,43 +1,53 @@