Skip to content

Commit

Permalink
fixed prefix macOS, bratgreen
Browse files Browse the repository at this point in the history
  • Loading branch information
MeijisIrlnd committed Aug 15, 2024
1 parent be9c494 commit f93f99c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
1 change: 1 addition & 0 deletions cmake/mostly_harmless.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ function(mostly_harmless_add_plugin)
target_link_libraries(${PLUGIN_NAME}_CLAP PUBLIC ${PLUGIN_NAME}_SharedCode)
if (APPLE)
set_target_properties(${PLUGIN_NAME}_CLAP PROPERTIES
OUTPUT_NAME ${PLUGIN_NAME}
BUNDLE True
BUNDLE_EXTENSION clap
MACOSX_BUNDLE_GUI_IDENTIFIER "com.slm-audio.${PLUGIN_NAME}"
Expand Down
23 changes: 12 additions & 11 deletions examples/gain/gain-gui/src/App.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
#root {
min-width: 400px;
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
align-content: center;
justify-content: center;
font-family: Arial, serif;
min-width: 400px;
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
align-content: center;
justify-content: center;
font-family: Arial, serif;
background-color: #89CC04;

}

.label {
color: black;
font-size: 90px;
-webkit-transform:scale(0.65, 1);
color: black;
font-size: 90px;
-webkit-transform: scale(0.65, 1);
}

.slider-el {
Expand Down

0 comments on commit f93f99c

Please sign in to comment.