mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
test
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import {StatusBar} from 'react-native';
|
import {StatusBar, PixelRatio} from 'react-native';
|
||||||
import FastStorage from 'react-native-fast-storage';
|
import FastStorage from 'react-native-fast-storage';
|
||||||
import {
|
import {
|
||||||
eSendEvent,
|
eSendEvent,
|
||||||
@@ -63,14 +63,14 @@ export const COLOR_SCHEME_DARK = {
|
|||||||
//FONT SIZE
|
//FONT SIZE
|
||||||
|
|
||||||
export const SIZE = {
|
export const SIZE = {
|
||||||
xxs: 10,
|
xxs: PixelRatio.getFontScale() * 10,
|
||||||
xs: 12,
|
xs: PixelRatio.getFontScale() * 12,
|
||||||
sm: 15,
|
sm: PixelRatio.getFontScale() * 15,
|
||||||
md: 18,
|
md: PixelRatio.getFontScale() * 18,
|
||||||
lg: 24,
|
lg: PixelRatio.getFontScale() * 24,
|
||||||
xl: 28,
|
xl: PixelRatio.getFontScale() * 28,
|
||||||
xxl: 32,
|
xxl: PixelRatio.getFontScale() * 32,
|
||||||
xxxl: 36,
|
xxxl: PixelRatio.getFontScale() * 36,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const br = 5; // border radius
|
export const br = 5; // border radius
|
||||||
|
|||||||
Reference in New Issue
Block a user