diff --git a/app/client.imba b/app/client.imba index 0467bc5..9ef4d8b 100644 --- a/app/client.imba +++ b/app/client.imba @@ -251,7 +251,10 @@ tag app bg:blue3/5 css a - tt:capitalize td:none c:blue3 fs:20px + td:none + + css .name + tt:capitalize c:blue3 fs:20px css .frequency fs:15px c:blue3 @@ -274,7 +277,7 @@ tag app css .delete bd:1px solid purple4/50 - px:7px rd:3px fs:15px mr:15px + px:7px rd:3px fs:15px c:purple4 cursor:pointer o:0 css .selected .delete @@ -284,7 +287,7 @@ tag app d:flex fl:1 css .link-right - d:flex + d:flex fld:row jc:space-between ai:center w:70px <[d:flex fld:column jc:space-between ai:center w:100%]> if settings_active @@ -339,7 +342,7 @@ tag app > <.link-left> - obj.name + <.name> obj.name <.link-right> <.delete@click.prevent.stop=handle_click_delete(obj)> "x" <.frequency> obj.frequency @@ -348,8 +351,8 @@ tag app <.link> <.link-left> - "Search {state.config.search_engine_hostname}" - <.link-right> + <.name[tt:none]> "Search {state.config.search_engine_hostname}" + <.link-right[jc:flex-end]> <.frequency> state.config.search_engine_frequency $input.focus! diff --git a/package.json b/package.json index 946eee9..1ee9df9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fuzzyhome", - "version": "0.0.30", + "version": "0.0.31", "scripts": { "start": "imba run -SMH --baseurl . -w server.imba", "build-app": "rm -rf dist && imba build -SMH --baseurl . server.imba", diff --git a/sw.imba b/sw.imba index 818037b..43b0c9a 100644 --- a/sw.imba +++ b/sw.imba @@ -1,7 +1,7 @@ let p = console.log const app_prefix = "fuzzyhome_cache" -const version = "0.0.30" +const version = "0.0.31" const cache_name = "{app_prefix}-{version}"