summaryrefslogtreecommitdiff
path: root/Button/NavLink.ui.qml
blob: 45bffe3094c7f68c2d7f664dc481fd86699fd772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.15
import QtQuick.Controls 2.15
import Bootstrap 5.3

Btn {
	id: button
	font: Bootstrap.bodyFont
	contentItem: Text {
		text: modelData
		font: button.font
		color: checked
			? Bootstrap.navPillsLinkActiveColor : Bootstrap.primary
		horizontalAlignment: Text.AlignHCenter
		verticalAlignment: Text.AlignVCenter
	}
	background: Rectangle {
		color: checked
			? Bootstrap.navPillsLinkActiveBg : Bootstrap.btnBg
		radius: Bootstrap.navPillsBorderRadius
	}
}