11 lines
179 B
QML
11 lines
179 B
QML
|
import QtQuick 2.13
|
||
|
import "../imports"
|
||
|
import "../shared"
|
||
|
|
||
|
StyledText {
|
||
|
id: glossaryLetterA
|
||
|
font.pixelSize: 17
|
||
|
font.weight: Font.Bold
|
||
|
color: Style.current.blue
|
||
|
}
|