mattermost-mobile/app/constants/tooltip.ts
Mattermost Build 187cfc3c83
Fix scheduled messages tooltip entering an infinite resize loop (#8877) (#8909)
(cherry picked from commit 085e3f3839)

Co-authored-by: Daniel Espino García <larkox@gmail.com>
2025-06-04 11:16:10 +03:00

13 lines
329 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {StyleSheet} from 'react-native';
export const staticStyles = StyleSheet.create({
tooltipContent: {
borderRadius: 8,
maxWidth: 247,
padding: 16,
maxHeight: 160,
},
});