Files
Unify/application/demo/page/news.page.body.js

57 lines
590 B
JavaScript
Raw Normal View History

2025-12-25 11:16:59 +01:00
import newsBody from '../news.body.js';
import textarea from '/elements/textarea.js';
import flexbox from '/elements/flexbox.js';
export default class newsPageBody extends flexbox, newsBody{
padding = 20;
width = "-webkit-fill-available"
#ifdef MACOS
#ifdef DARK
background = "#282828";
#endif
#ifdef LIGHT
background = "#ffffff";
#endif
#endif
#ifdef WINDOWS
#ifdef DARK
#endif
#ifdef LIGHT
#endif
#endif
#ifdef ANDROID
borderRadius = "0 0 18px 18px"
#ifdef LIGHT
background = "white";
#endif
#endif
}