Skip to content

Commit

Permalink
Adjust font size #344
Browse files Browse the repository at this point in the history
  • Loading branch information
melonamin committed Nov 18, 2022
1 parent 2e53a40 commit ee10530
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SwiftBar/UI/Preferences/ShortcutPluginsPreferencesView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ struct ShortcutPluginsPreferencesView: View {
PluginStateView(plugin: plugin, pluginManager: pluginManager)
}.width(15)
TableColumn("Name", value: \.name) { plugin in
Text(plugin.name).font(.title2)
Text(plugin.name).font(.body)
}
TableColumn("Shortcut", value: \.shortcut) { plugin in
Text("\(plugin.shortcut)").font(.title2)
Text("\(plugin.shortcut)").font(.body)
}
TableColumn("Repeat") { plugin in
Text("\(plugin.repeatString)").font(.title2)
Text("\(plugin.repeatString)").font(.body)
}.width(60)

TableColumn("") { plugin in
Expand Down

0 comments on commit ee10530

Please sign in to comment.