blob: a1615828393d2efb2ec84c0718368fb452722626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import Bootstrap 5.3
import Eduport 1.4
TextField {
font {
family: Bootstrap.bodyFont.family
weight: Bootstrap.bodyFont.weight
pointSize: Eduport.formControlFontSize
}
background: Rectangle {
color: "transparent"
}
}
|