I'm guessing this may start causing us problems either soon or never.
This commit is contained in:
parent
69ac3af9b7
commit
4851cd9031
4 changed files with 9 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<v-card>
|
<v-card color="blue-grey-lighten-4">
|
||||||
<v-card-item>
|
<v-card-item>
|
||||||
<v-card-title>Balance sheet</v-card-title>
|
<v-card-title>Balance sheet</v-card-title>
|
||||||
</v-card-item>
|
</v-card-item>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<v-card>
|
<v-card color="blue-grey-lighten-4">
|
||||||
<v-card-item>
|
<v-card-item>
|
||||||
<v-card-title>Employees over time</v-card-title>
|
<v-card-title>Employees over time</v-card-title>
|
||||||
</v-card-item>
|
</v-card-item>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<v-card>
|
<v-card color="blue-grey-lighten-4">
|
||||||
<v-card-item>
|
<v-card-item>
|
||||||
<v-card-title>Earnings per Share (EPS)</v-card-title>
|
<v-card-title>Earnings per Share (EPS)</v-card-title>
|
||||||
</v-card-item>
|
</v-card-item>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<v-card>
|
<v-card color="blue-grey-lighten-4">
|
||||||
<v-card-item>
|
<v-card-item>
|
||||||
<v-card-title>Stock price over time</v-card-title>
|
<v-card-title>Stock price over time</v-card-title>
|
||||||
</v-card-item>
|
</v-card-item>
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
</v-btn-toggle>
|
</v-btn-toggle>
|
||||||
<strong class="label">Current price:</strong>
|
<strong class="label">Current price:</strong>
|
||||||
<div class="chips">
|
<div class="chips">
|
||||||
<v-chip class="ma-1" v-for="ticker in tickers" :key="ticker" :color="getTickerColor(ticker)" size="large"
|
<v-chip class="ma-1 max-price" v-for="ticker in tickers" :key="ticker" :color="getTickerColor(ticker)" size="large"
|
||||||
variant="outlined">
|
variant="outlined">
|
||||||
{{ ticker }}: ${{ maxPrice[ticker] }}
|
{{ ticker }}: ${{ maxPrice[ticker] }}
|
||||||
</v-chip>
|
</v-chip>
|
||||||
|
@ -35,6 +35,10 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.max-price {
|
||||||
|
background-color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
.toolbar .toggles {
|
.toolbar .toggles {
|
||||||
flex: 1 0;
|
flex: 1 0;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue