This commit is contained in:
aaron 2025-05-23 12:19:41 +08:00
parent 9f70d8ace7
commit cb9b876340
2 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: tradus-web:1.3.6 image: tradus-web:1.3.7
container_name: tradus-web container_name: tradus-web
ports: ports:
- '6000:80' - '6000:80'

View File

@ -1091,7 +1091,7 @@ const parsedContent = computed(() => {
.timeframe-option.active { .timeframe-option.active {
background-color: var(--color-accent); background-color: var(--color-accent);
color: white; color: white !important;
border-color: var(--color-accent); border-color: var(--color-accent);
} }
@ -1145,6 +1145,12 @@ const parsedContent = computed(() => {
.target-info .value { .target-info .value {
white-space: nowrap; white-space: nowrap;
} }
.timeframe-option.active {
background-color: var(--color-accent);
color: white !important;
border-color: var(--color-accent);
}
} }
</style> </style>