source: gs3-installations/thewillow/trunk/sites/thewillow/dlcol-chatgpt/iframe-page/dl-chatgpt_files/resize.module.css@ 38779

Last change on this file since 38779 was 38779, checked in by davidb, 3 months ago

Files that need to be moved to <gsdl3srchome>/web to provide a static web page example using an iframe to embedd the React/NextJS based chatbot

File size: 270 bytes
Line 
1/**
2 * @file
3 * Resizable textareas.
4 */
5
6.resize-none {
7 resize: none;
8}
9.resize-vertical {
10 min-height: 2em;
11 resize: vertical;
12}
13.resize-horizontal {
14 max-width: 100%;
15 resize: horizontal;
16}
17.resize-both {
18 max-width: 100%;
19 min-height: 2em;
20 resize: both;
21}
Note: See TracBrowser for help on using the repository browser.