Skip to content

Commit

Permalink
feat: Small fix to already existing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dahbar committed Oct 30, 2023
1 parent c44dd63 commit 631feeb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions capellambse/svg/symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def logical_component_symbol(
"m 37.427456,20.821353 h 4.221475 V 50.90971 H 37.427456 Z M"
" 39.538194,46.89517 H 56.75519 v 4.01454 H 39.538194 Z"
),
style="fill: #000;",
style="fill: #000;stroke-width: 0.1;",
)
)
symb.add(letter)
Expand Down Expand Up @@ -372,7 +372,8 @@ def standalone_stick_figure_symbol(
def logical_actor_symbol(id_: str = "LogicalActorSymbol") -> container.Symbol:
symb = _make_icon_frame(id_=id_, color="#dbe6f4")
letters = container.Group(
transform="scale(0.83010896,1.2046611)", style="fill: #000;"
transform="scale(0.83010896,1.2046611)",
style="fill: #000;stroke-width: 0.1;",
)
letters.add( # Upper-Case L
path.Path(
Expand Down

0 comments on commit 631feeb

Please sign in to comment.