Skip to content

Commit

Permalink
Merge pull request #3806 from TrainLCD/fix/lb
Browse files Browse the repository at this point in the history
東日本・JAテーマLB文字間隔修正
  • Loading branch information
TinyKitten authored Oct 13, 2024
2 parents 9556ef7 + 8558ada commit 927dd74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions src/components/LineBoardEast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { LinearGradient } from 'expo-linear-gradient'
import React, { useCallback, useMemo, useState } from 'react'
import {
Dimensions,
Platform,
StyleProp,
StyleSheet,
TextStyle,
Expand Down Expand Up @@ -132,10 +131,7 @@ const styles = StyleSheet.create({
fontSize: RFValue(18),
fontWeight: 'bold',
marginLeft: isTablet ? 5 : 2.5,
marginBottom: Platform.select({
ios: -6,
android: isTablet ? 0 : -6,
}),
marginBottom: isTablet ? -3 : -6,
},
stationNameEn: {
fontSize: RFValue(18),
Expand Down
6 changes: 1 addition & 5 deletions src/components/LineBoardSaikyo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { LinearGradient } from 'expo-linear-gradient'
import React, { useCallback, useMemo, useState } from 'react'
import {
Dimensions,
Platform,
StyleProp,
StyleSheet,
TextStyle,
Expand Down Expand Up @@ -131,10 +130,7 @@ const styles = StyleSheet.create({
fontWeight: 'bold',
color: '#3a3a3a',
marginLeft: isTablet ? 10 : 5,
marginBottom: Platform.select({
ios: -6,
android: isTablet ? 0 : -6,
}),
marginBottom: isTablet ? -3 : -6,
},
stationNameEn: {
fontSize: RFValue(18),
Expand Down

0 comments on commit 927dd74

Please sign in to comment.