+
diff --git a/src/market/MarketResultTable.vue b/src/market/MarketResultTable.vue
index e188924..3c43738 100644
--- a/src/market/MarketResultTable.vue
+++ b/src/market/MarketResultTable.vue
@@ -56,7 +56,7 @@ const { sortedArray, headerProps } = useSort(computed(() => props.result.map(r =
{{ formatIsk(r.q3) }} |
{{ percentFormater.format(r.percent) }} |
-
+
|
diff --git a/src/market/market.ts b/src/market/market.ts
index da7c449..0f6a553 100644
--- a/src/market/market.ts
+++ b/src/market/market.ts
@@ -28,7 +28,7 @@ export type HistoryQuartils = {
export const getHistory = async (regionId: number, tyeId: number): Promise => (await esiAxiosInstance.get(`/markets/${regionId}/history/`, { params: { type_id: tyeId } })).data;
-export const getHistoryQuartils = async (history: MarketOrderHistory[]): Promise => {
+export const getHistoryQuartils = (history: MarketOrderHistory[]): HistoryQuartils => {
const volumes = history
.flatMap(h => {
const volume = h.volume;
diff --git a/src/style.css b/src/style.css
index 99f7b29..e681938 100644
--- a/src/style.css
+++ b/src/style.css
@@ -41,4 +41,10 @@
@apply bg-slate-600 hover:bg-slate-800;
border-radius: 5px;
}
+ .btn-icon {
+ @apply p-0 border-none bg-transparent hover:text-slate-400;
+ > svg {
+ @apply w-6 h-6 hover:text-slate-400;
+ }
+ }
}
\ No newline at end of file