Automatically maximises your Tasmota Console heights to the available screen space
Tasmota console height by wolph
Details
Authorwolph
LicenseBSD
Categorytasmota.github.io
Created
Updated
Size443 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Tasmota console height
@version 20230803.00.09
@namespace userstyles.world/user/wolph
@description Automatically maximises your Tasmota Console heights to the available screen space
@author wolph
@license BSD
==/UserStyle== */
@-moz-document regexp("http://\\d+\\.\\d+\\.\\d+\\.\\d+/(cs|bc)\\??") {
textarea#t1{
height: calc(100vh - 340px);
}
div#t1{
height: calc(100vh - 430px);
}
}