Hey!
One of my chips has a smaller font, compared to the others, see below. How can I make all of the chips align to that smaller font?
Hey!
One of my chips has a smaller font, compared to the others, see below. How can I make all of the chips align to that smaller font?
Hej nikno
Can you tell us which Chip Tempaltes you use? In some, the font size is already defined in the template.
Maybe you can post your code for the chips
Sure, that make sense - thanks! These are the ones I am using.
For the electricity price;
- type: 'custom:button-card'
template: chip_power_consumption
For the weather;
- type: 'custom:button-card'
template: chip_temperature
For the alarm (which currently uses the smaller font);
- type: 'custom:button-card'
template: chip_alarm
For all others;
- type: "custom:button-card"
template: chip_mdi_icon_state
I see the problem, but I canât offer you a nice solution. There is a quick and dirty way:
you can edit the font-size direct in the template-card:
Change the value to 14px
Thanks for suggestion.
I tried to change this one, but this one seems only to affect the alarm chip - and no other chip.
Change to â10pxâ;
Change to â14pxâ;
But I would like to change all other chips to use the smaller font size that the alarm one (which I guess is â12pxâ), to make them use less space (width). I checked the other yaml files in this folder - but there seem to be no font-size reference to tune/change at allâŚ
So, maybe there is some default font-size setting that affects all other chipsâŚ(or at least this is the case in my installationâŚ).
That is correct. The alarm chip is the only one that is not defined directly via the template âchips.yamlâ. So if you want to make other peopleâs fonts smaller. you have to edit the template âchips.yamlâ.
Thanks - just what I was looking for.
But does not seem to be fully persistent. I think it got reset back to default value when I updated HA.
Got it!
Took some time to figure it out but hereâs how it works:
- type: "custom:button-card"
template: chip_temperature
variables:
ulm_chip_temperature_outside: sensor.bewegungsmelder_ankleidezimmer_temperature
ulm_chip_temperature_weather: weather.forecast_home
styles:
label:
- font-size: 20px
You can enter your font size in âfont-sizeâ . Itâs static and independent of updates
Thanks again. Also much cleaner to have it in my yaml files, instead of the âsystem onesâ.
Can the Minimalist UI Cards be used in our own themes? So for example, I want to use the People card in my theme, and not the default UI Lovelace Minimalist theme.
Thanks
Hi everyone!
I am just starting with Minimalist and really love it!
The card I want to use for my rooms is custom_card_esh_room, but I want to make one change.
In this card, the climate is shown by state of the climate entity.
But I have climate entities that have presets, and would like to show colors/icons based on that.
What would I need to change to edit this?
Regards, Patrick
i asked the question somewhere else but was been told to ask it in this subforumâŚ
I have a good working dashboard.
Now I have made a new one in my config.yaml.
dashboards:
prak-X:
mode: yaml
title: X
show_in_sidebar: true
filename: ui_lovelace_minimalist/dashboard/adaptive-dash/adaptive-ui.yaml
I copied al my yaml files from the original dashboard, but in the new dashboard all my cards are missing. Probably something to do with directory structure. How do I correct this ?
Hi all!
I was wondering: is there a nice UI Minimalist solution for input_selects / dropdown entities? I have a couple that I really would like to use, but I canât seem to find a nice style for that.
I would also like to integrate those into the scenes card or welcome scenes, where the dropdown opens on a tap, but I canât find out how to do that at all.
Any suggestions?
What are you using for that bottom cards?
I wonder if this is still maintained⌠there has been no commit on GitHub for 6 months and there seems to be bigger issue in the configuration of this integration: Unable to configure - add new custom cards via integration ¡ Issue #1493 ¡ UI-Lovelace-Minimalist/UI ¡ GitHub
Hi. I try to use !include within my view Yaml to structure more my dashbord.
I canât do it what is the good syntax?
title: âHomeâ
path: âhomeâ
cards:
!include âhome/welcome.yamlâ
!include âhome/room_menu.yamlâ
lower the indentation level by one, ie. donât indent the tile
,path
etc
âŚ
title: Home
icon: mdi:home-circle
path: home
cards:
# Sidebar
- !include sidebar.yaml
Itâs not working. When I add a second !include I have an error
while parsing a block mapping in â/config/ui_lovelace_minimalist/dashboard/views/home.yamlâ, line 1, column 3 expected , but found ââ in â/config/ui_lovelace_minimalist/dashboard/views/home.yamlâ, line 5, column 5
sounds like an issue with your yaml files.
hereâs is a snippet of my sidebar.yaml
file
type: vertical-stack
view_layout:
grid-area: sidebar
cards:
- type: custom:stack-in-card
mode: vertical
cards:
- type: conditional
conditions:
- condition: screen
media_query: "(max-width: 767px)"
card:
type: custom:clock-weather-card
entity: weather.high_croft_daily
locale: en-GB
date_pattern: ccc, DDD
animated_icon: true
hide_forecast_section: true
use_browser_time: true
show_decimal: true
card_mod:
style: |
.card-content {
padding-top: 0px !important;
padding-bottom: 0px !important;
}