Add input with button style

This commit is contained in:
Florine W. Dekker 2022-11-17 09:35:25 +01:00
parent c44e97cdbd
commit 15c0485527
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
3 changed files with 19 additions and 5 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{ {
"name": "@fwdekker/template", "name": "@fwdekker/template",
"version": "2.7.3", "version": "2.8.0",
"description": "The base template for pages on fwdekker.com.", "description": "The base template for pages on fwdekker.com.",
"author": "Florine W. Dekker", "author": "Florine W. Dekker",
"license": "MIT", "license": "MIT",
@ -34,10 +34,10 @@
"grunt-contrib-watch": "^1.1.0", "grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0", "grunt-focus": "^1.0.0",
"grunt-webpack": "^5.0.0", "grunt-webpack": "^5.0.0",
"ts-loader": "^9.4.0", "ts-loader": "^9.4.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "^4.8.3", "typescript": "^4.9.3",
"webpack": "^5.74.0", "webpack": "^5.75.0",
"webpack-cli": "^4.10.0" "webpack-cli": "^5.0.0"
} }
} }

View File

@ -40,6 +40,20 @@ noscript p {
display: none !important; display: none !important;
} }
.inputWithButton {
display: flex;
}
.inputWithButton > *:first-child {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.inputWithButton > *:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
/* Header */ /* Header */
header .container { header .container {